Close() public method

public Close ( ) : void
return void
Exemplo n.º 1
0
        public IQueueBrowser CreateBrowser(IQueue queue, string selector)
        {
            if (queue == null)
            {
                throw new InvalidDestinationException("Cannot create a Consumer with a Null destination");
            }

            ActiveMQDestination dest    = ActiveMQDestination.Transform(queue);
            QueueBrowser        browser = null;

            try
            {
                browser = new QueueBrowser(this, GetNextConsumerId(), dest, selector, this.DispatchAsync);
            }
            catch (Exception)
            {
                if (browser != null)
                {
                    browser.Close();
                }

                throw;
            }

            return(browser);
        }
Exemplo n.º 2
0
        public IQueueBrowser CreateBrowser(IQueue queue, string selector)
        {
            if(queue == null)
            {
                throw new InvalidDestinationException("Cannot create a Consumer with a Null destination");
            }

            ActiveMQDestination dest = ActiveMQDestination.Transform(queue);
            QueueBrowser browser = null;

            try
            {
                browser = new QueueBrowser(this, GetNextConsumerId(), dest, selector, this.DispatchAsync);
            }
            catch(Exception)
            {
                if(browser != null)
                {
                    browser.Close();
                }

                throw;
            }

            return browser;
        }