Results 1 to 2 of 2

Thread: Does Spring-AMQP do multiple acknowledgements if ack mode is AUTO?

  1. #1
    Join Date
    Jul 2012
    Posts
    2

    Default Does Spring-AMQP do multiple acknowledgements if ack mode is AUTO?

    If the listener acknowledgement mode is set to "AUTO" (i.e. container does the ack), does the container leverage the multiple ack feature available in the RabbitMQ Java client lib?

  2. #2
    Join Date
    Mar 2010
    Location
    Gtr Philadelphia, PA
    Posts
    2,029

    Default

    Yes; it's controlled by the txSize property (default 1). If, say, set to 10, the container will channel.basicAck() every 10 messages (with the multiple bit set).
    Gary P. Russell
    Spring Integration Team
    SpringSource, a division of VMware

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •