Uses of Interface
org.cometd.bayeux.client.ClientSession
-
Packages that use ClientSession Package Description org.cometd.annotation.client org.cometd.bayeux.client org.cometd.bayeux.server org.cometd.client org.cometd.client.ext org.cometd.common org.cometd.oort org.cometd.server -
-
Uses of ClientSession in org.cometd.annotation.client
Constructors in org.cometd.annotation.client with parameters of type ClientSession Constructor Description ClientAnnotationProcessor(ClientSession clientSession)
ClientAnnotationProcessor(ClientSession clientSession, java.lang.Object... injectables)
-
Uses of ClientSession in org.cometd.bayeux.client
Methods in org.cometd.bayeux.client that return ClientSession Modifier and Type Method Description ClientSession
ClientSessionChannel. getSession()
Methods in org.cometd.bayeux.client with parameters of type ClientSession Modifier and Type Method Description default void
ClientSession.Extension. incoming(ClientSession session, Message.Mutable message, Promise<java.lang.Boolean> promise)
Callback method invoked every time a message is incoming.default void
ClientSession.Extension. outgoing(ClientSession session, Message.Mutable message, Promise<java.lang.Boolean> promise)
Callback method invoked every time a message is outgoing.default boolean
ClientSession.Extension. rcv(ClientSession session, Message.Mutable message)
Callback method invoked every time a normal message is received.default boolean
ClientSession.Extension. rcvMeta(ClientSession session, Message.Mutable message)
Callback method invoked every time a meta message is received.default boolean
ClientSession.Extension. send(ClientSession session, Message.Mutable message)
Callback method invoked every time a normal message is being sent.default boolean
ClientSession.Extension. sendMeta(ClientSession session, Message.Mutable message)
Callback method invoked every time a meta message is being sent. -
Uses of ClientSession in org.cometd.bayeux.server
Subinterfaces of ClientSession in org.cometd.bayeux.server Modifier and Type Interface Description interface
LocalSession
ALocalSession
is aClientSession
within the server. -
Uses of ClientSession in org.cometd.client
Classes in org.cometd.client that implement ClientSession Modifier and Type Class Description class
BayeuxClient
BayeuxClient is the implementation of a client for the Bayeux protocol.Methods in org.cometd.client that return ClientSession Modifier and Type Method Description ClientSession
BayeuxClient.BayeuxClientChannel. getSession()
-
Uses of ClientSession in org.cometd.client.ext
Methods in org.cometd.client.ext with parameters of type ClientSession Modifier and Type Method Description boolean
BinaryExtension. rcv(ClientSession session, Message.Mutable message)
boolean
AckExtension. rcvMeta(ClientSession session, Message.Mutable message)
boolean
TimesyncClientExtension. rcvMeta(ClientSession session, Message.Mutable message)
boolean
BinaryExtension. send(ClientSession session, Message.Mutable message)
boolean
TimestampClientExtension. send(ClientSession session, Message.Mutable message)
boolean
AckExtension. sendMeta(ClientSession session, Message.Mutable message)
boolean
TimestampClientExtension. sendMeta(ClientSession session, Message.Mutable message)
boolean
TimesyncClientExtension. sendMeta(ClientSession session, Message.Mutable message)
-
Uses of ClientSession in org.cometd.common
Classes in org.cometd.common that implement ClientSession Modifier and Type Class Description class
AbstractClientSession
Partial implementation ofClientSession
. -
Uses of ClientSession in org.cometd.oort
Classes in org.cometd.oort that implement ClientSession Modifier and Type Class Description class
OortComet
The Oort comet client connects a local Oort comet server to a remote Oort comet server. -
Uses of ClientSession in org.cometd.server
Classes in org.cometd.server that implement ClientSession Modifier and Type Class Description class
LocalSessionImpl
ALocalSession
implementation.Methods in org.cometd.server that return ClientSession Modifier and Type Method Description ClientSession
LocalSessionImpl.LocalChannel. getSession()
-