Re: [EXTERNAL]:Re: Window-Based Flow Control Performance Question

2022-03-20 Thread Justin Bertram
Window-based flow-control for consumers was designed to decrease network round-trips and therefore increase performance. The classic example is a consumer receiving lots of small messages over a relatively slow network and processing those messages very quickly. In this kind of use-case window-base

答复: what is the difference ack and response?

2022-03-20 Thread 穆 建江
I think I have found theire difference through reading source code! thanks -邮件原件- 发件人: Justin Bertram [mailto:jbert...@apache.org] 发送时间: 2022年3月20日 22:50 收件人: users@activemq.apache.org 主题: Re: what is the difference ack and response? Can you provide some context (e.g. what class are you

Re: what is the difference ack and response?

2022-03-20 Thread Justin Bertram
Can you provide some context (e.g. what class are you reading)? Those terms may not be used 100% consistently across the entire code-base so the context really matters. Generally speaking, the code itself is the "source of truth." All the answers about how to use the code are in the code itself.

what is the difference ack and response?

2022-03-20 Thread domson.t...@outlook.com
Hi, I am reading artemis source code, but I am confused by response and ack. What is their difference? And, when they can be used? Thanks!