An inbound message has been received by 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 deserialized or not. @param seqNo the sequential number of the message within the stream, starting from 0. It can
(int seqNo)
| 51 | * be used to correlate with {@link #inboundMessageRead} for the same message. |
| 52 | */ |
| 53 | public void inboundMessage(int seqNo) { |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * An outbound message has been serialized and sent to the transport. |
no outgoing calls
no test coverage detected