public static interface MarshalBuffer.HeaderGenerator
| Modifier and Type | Method and Description |
|---|---|
void |
beginMessage(MarshalBuffer buffer,
java.lang.Object cookie)
Called to begin a new fragment.
|
void |
endMessage(byte[] buf,
int pos,
int len,
boolean fragment,
int length,
java.lang.Object cookie)
Called when message is about to get sent.
|
void endMessage(byte[] buf,
int pos,
int len,
boolean fragment,
int length,
java.lang.Object cookie)
buf - buffer containing the reserved bytes. Not all of the buffer
is considered to be read-write.pos - offset into buf of first modifiable byte.len - length of modifiable bytes.fragment - true if this is called as a response to the fragment
operation.length - length in bytes between the position that addHeader was
called and the end of the message.cookie - the cookie passed to the addHeader operation.void beginMessage(MarshalBuffer buffer, java.lang.Object cookie)
buffer - the buffer getting marshaled to.cookie - the cookie passed to the addHeader operation.