AppserverIo\Appserver\MessageQueue\QueueManager::lookup PHP 메소드

lookup() 공개 메소드

Runs a lookup for the message queue with the passed lookup name and session ID.
public lookup ( string $lookupName, string $sessionId = null, array $args = [] ) : AppserverIo\Psr\Pms\QueueInterface
$lookupName string The queue lookup name
$sessionId string The session ID
$args array The arguments passed to the queue
리턴 AppserverIo\Psr\Pms\QueueInterface The requested queue instance
    public function lookup($lookupName, $sessionId = null, array $args = array())
    {
        return $this->getResourceLocator()->lookup($this, $lookupName, $sessionId, $args);
    }