Yes, 714 will apply to the .Net:
internal void AcknowledgeLastDelivered()
{
if (_lastDeliveryTag > 0)
{
_channel.AcknowledgeMessage((ulong)_lastDeliveryTag, true);
// XXX evil cast
_lastDeliveryTag = -1;
}
}
Called when committing, and acks up to the last tag.
Rupert
On 04/01/2008, Aidan Skinner <[EMAIL PROTECTED]> wrote:
>
> On Jan 4, 2008 10:19 AM, Rupert Smith <[EMAIL PROTECTED]>
> wrote:
>
> > It does not send mandatory by default whereas before it did. I thought
> we
> > had decided that this was how the Java is to do it too? If not I can
> change
> > it back.
> >
> > Reason I changed it was because the error handling in the .Net is broken
> > (bug introduced when I fixed fail-over), and returned messages cause it
> to
> > break. I should really fix that properly too.
>
> On a related note, did we determine if QPID-714 applys to the .Net
> client as well?
>
> - Aidan
> --
> aim/y!:aidans42 g:[EMAIL PROTECTED]
> http://aidan.skinner.me.uk/
> "When the going gets weird, the weird turn pro."
> -- Hunter S. Thompson
>