Class BinaryExtension
java.lang.Object
org.cometd.client.ext.BinaryExtension
- All Implemented Interfaces:
ClientSession.Extension
A client extension that encodes byte[] or ByteBuffer into a BinaryData
object using the Z85 format for outgoing messages, and decodes BinaryData
objects back into byte[] or ByteBuffer for incoming messages.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanrcv(ClientSession session, Message.Mutable message) Callback method invoked every time a normal message is received.booleansend(ClientSession session, Message.Mutable message) Callback method invoked every time a normal message is being sent.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.cometd.bayeux.client.ClientSession.Extension
incoming, outgoing, rcvMeta, sendMeta
-
Constructor Details
-
BinaryExtension
public BinaryExtension() -
BinaryExtension
public BinaryExtension(boolean decodeToByteBuffer)
-
-
Method Details
-
rcv
Description copied from interface:ClientSession.ExtensionCallback method invoked every time a normal message is received.- Specified by:
rcvin interfaceClientSession.Extension- Parameters:
session- the session object that is receiving the messagemessage- the message received- Returns:
- true if message processing should continue, false if it should stop
-
send
Description copied from interface:ClientSession.ExtensionCallback method invoked every time a normal message is being sent.- Specified by:
sendin interfaceClientSession.Extension- Parameters:
session- the session object that is sending the messagemessage- the message being sent- Returns:
- true if message processing should continue, false if it should stop
-