springboot rabbitmq 보충
1676 단어 답조rabbitmqspringboot
springboot rabbitmq 보충
분포식 환경에서 멀티listener에 대한 해답
Queue와 exchange의routingKey 귀속과 묶음 풀기 구덩이
콜백 정보 AcknowledgeMode
답조는 다음과 같은 방식이 있는데, 다음은 각각 실천할 것이다
public enum AcknowledgeMode {
NONE,
MANUAL,
AUTO;
}
공식 문서의 리셋에 대한 설명
NONE = no acks will be sent (incompatible with channelTransacted=true). RabbitMQ calls this "autoack"because the broker assumes all messages are acked without any action from the consumer.MANUAL = the listener must acknowledge all messages by calling Channel.basicAck().AUTO = the container will acknowledge the message automatically, unless the MessageListener throws an exception. Note that acknowledgeMode is complementary to channelTransacted - if the channel is transacted then the broker requires a commit notification in addition to the ack. This is the default mode. See also txSize.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 콜백 방법 상세 정보위 CallBack의 범주를 무시하고 위키백과에 정의된 대로 익명 내부 클래스의 모든 코드는 함수 파라미터가 다른 코드로 전달되는 실행 가능한 코드의 인용으로 볼 수 있습니다.onResponse와 onFailure ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.