Apache.NMS.ActiveMQ.QueueBrowser.QueueBrowser C# (CSharp) Method

QueueBrowser() private method

private QueueBrowser ( Session session, ConsumerId consumerId, ActiveMQDestination destination, string selector, bool dispatchAsync ) : System
session Session
consumerId Apache.NMS.ActiveMQ.Commands.ConsumerId
destination Apache.NMS.ActiveMQ.Commands.ActiveMQDestination
selector string
dispatchAsync bool
return System
        internal QueueBrowser(Session session, ConsumerId consumerId, ActiveMQDestination destination, string selector, bool dispatchAsync)
        {
            this.session = session;
            this.consumerId = consumerId;
            this.destination = destination;
            this.selector = selector;
            this.dispatchAsync = dispatchAsync;
            this.consumer = CreateConsumer();
        }