You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Achmedzhanov Nail (JIRA)" <ji...@apache.org> on 2009/06/29 09:38:06 UTC

[jira] Created: (AMQNET-169) Apache.NMS.MSMQ.MessageConsumer.Dispose throws NotImplementedException

Apache.NMS.MSMQ.MessageConsumer.Dispose throws NotImplementedException
----------------------------------------------------------------------

                 Key: AMQNET-169
                 URL: https://issues.apache.org/activemq/browse/AMQNET-169
             Project: ActiveMQ .Net
          Issue Type: Bug
          Components: MSMQ
    Affects Versions: 1.2
            Reporter: Achmedzhanov Nail
            Assignee: Jim Gomes
             Fix For: 1.2


Sample Code

==========================================

                   session = this.connection.CreateSession(AcknowledgementMode.Transactional);
                    var destination = SessionUtil.GetDestination(this.session, mailQueue);

                    consumer = this.session.CreateConsumer(destination);
                    consumer.Dispose(); // throws NotImplementedException

==========================================

And MessageConsumer.cs
==========================================

		public void Dispose()
		{
			throw new NotImplementedException();
		}

==========================================

Is this component ready for to use?



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (AMQNET-169) Apache.NMS.MSMQ.MessageConsumer.Dispose throws NotImplementedException

Posted by "Jim Gomes (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQNET-169?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Gomes resolved AMQNET-169.
------------------------------

    Resolution: Fixed

> Apache.NMS.MSMQ.MessageConsumer.Dispose throws NotImplementedException
> ----------------------------------------------------------------------
>
>                 Key: AMQNET-169
>                 URL: https://issues.apache.org/activemq/browse/AMQNET-169
>             Project: ActiveMQ .Net
>          Issue Type: Bug
>          Components: MSMQ
>    Affects Versions: 1.2.0
>            Reporter: Achmedzhanov Nail
>            Assignee: Jim Gomes
>             Fix For: 1.2.0
>
>
> Sample Code
> ==========================================
>                    session = this.connection.CreateSession(AcknowledgementMode.Transactional);
>                     var destination = SessionUtil.GetDestination(this.session, mailQueue);
>                     consumer = this.session.CreateConsumer(destination);
>                     consumer.Dispose(); // throws NotImplementedException
> ==========================================
> And MessageConsumer.cs
> ==========================================
> 		public void Dispose()
> 		{
> 			throw new NotImplementedException();
> 		}
> ==========================================
> Is this component ready for to use?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.