An outbound message has been passed to the stream. This is called as soon as the stream knows about the message, but doesn't have further guarantee such as whether the message is serialized or not. @param seqNo the sequential number of the message within the stream, starting from 0. It can
(int seqNo)
| 40 | * be used to correlate with {@link #outboundMessageSent} for the same message. |
| 41 | */ |
| 42 | public void outboundMessage(int seqNo) { |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * An inbound message has been received by the stream. This is called as soon as the stream knows |
no outgoing calls