Package org.cometd.server.ext
Class BinaryExtension
- java.lang.Object
-
- org.cometd.server.ext.BinaryExtension
-
- All Implemented Interfaces:
BayeuxServer.Extension
public class BinaryExtension extends java.lang.Object implements BayeuxServer.Extension
A server extension that encodes
byte[]orByteBufferinto aBinaryDataobject using theZ85format for outgoing messages, and decodesBinaryDataobjects back intobyte[]orByteBufferfor incoming messages.- See Also:
BinarySessionExtension
-
-
Constructor Summary
Constructors Constructor Description BinaryExtension()BinaryExtension(boolean decodeToByteBuffer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanrcv(ServerSession from, ServerMessage.Mutable message)booleansend(ServerSession from, ServerSession to, ServerMessage.Mutable message)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.cometd.bayeux.server.BayeuxServer.Extension
incoming, outgoing, rcvMeta, sendMeta
-
-
-
-
Method Detail
-
rcv
public boolean rcv(ServerSession from, ServerMessage.Mutable message)
- Specified by:
rcvin interfaceBayeuxServer.Extension
-
send
public boolean send(ServerSession from, ServerSession to, ServerMessage.Mutable message)
- Specified by:
sendin interfaceBayeuxServer.Extension
-
-