Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
The current Apollo snapshot does not support the client-individual ack mode although it is mentioned in the user manual, in the "Reliable Messaging" section.
FWIW, it is also defined in the STOMP 1.1 spec.
Using it, we get: "Unsuported ack mode: client-individual". (yes, there is a typo here...)
More confusing, the code contains other ack modes which are not documented:
val ACK_MODE = ascii("ack")
val ACK_MODE_AUTO = ascii("auto")
val ACK_MODE_NONE = ascii("none")
val ACK_MODE_CLIENT = ascii("client")
val ACK_MODE_SESSION = ascii("session")
val ACK_MODE_MESSAGE = ascii("message")
Could client-individual be supported and all ack modes documented please?