Uses of Interface
org.cometd.bayeux.Session
-
Packages that use Session Package Description org.cometd.bayeux.client org.cometd.bayeux.server org.cometd.client org.cometd.common org.cometd.oort org.cometd.server -
-
Uses of Session in org.cometd.bayeux.client
Subinterfaces of Session in org.cometd.bayeux.client Modifier and Type Interface Description interfaceClientSessionThis interface represents the client side Bayeux session. -
Uses of Session in org.cometd.bayeux.server
Subinterfaces of Session in org.cometd.bayeux.server Modifier and Type Interface Description interfaceLocalSessionALocalSessionis aClientSessionwithin the server.interfaceServerSessionObjects implementing this interface are the server-side representation of remote Bayeux clients.Methods in org.cometd.bayeux.server with parameters of type Session Modifier and Type Method Description default voidServerSession. deliver(Session sender, String channel, Object data)Deprecated.voidServerSession. deliver(Session sender, String channel, Object data, Promise<Boolean> promise)Delivers the given information to this session.default voidServerSession. deliver(Session sender, ServerMessage.Mutable message)Deprecated.voidServerSession. deliver(Session sender, ServerMessage.Mutable message, Promise<Boolean> promise)Delivers the given message to this session.default voidServerChannel. publish(Session from, Object data)Deprecated.useServerChannel.publish(Session, Object, Promise)insteadvoidServerChannel. publish(Session from, Object data, Promise<Boolean> promise)Publishes the given information to this channel.default voidServerChannel. publish(Session from, ServerMessage.Mutable message)Deprecated.voidServerChannel. publish(Session from, ServerMessage.Mutable message, Promise<Boolean> promise)Publishes the given message to this channel, delivering the message to all theServerSessions subscribed to this channel. -
Uses of Session in org.cometd.client
Classes in org.cometd.client that implement Session Modifier and Type Class Description classBayeuxClientBayeuxClient is the implementation of a client for the Bayeux protocol. -
Uses of Session in org.cometd.common
Classes in org.cometd.common that implement Session Modifier and Type Class Description classAbstractClientSessionPartial implementation ofClientSession. -
Uses of Session in org.cometd.oort
Classes in org.cometd.oort that implement Session Modifier and Type Class Description classOortCometThe Oort comet client connects a local Oort comet server to a remote Oort comet server. -
Uses of Session in org.cometd.server
Classes in org.cometd.server that implement Session Modifier and Type Class Description classLocalSessionImplALocalSessionimplementation.classServerSessionImplMethods in org.cometd.server with parameters of type Session Modifier and Type Method Description voidServerSessionImpl. deliver(Session sender, String channelId, Object data, Promise<Boolean> promise)voidServerSessionImpl. deliver(Session sender, ServerMessage.Mutable message, Promise<Boolean> promise)voidServerChannelImpl. publish(Session from, Object data, Promise<Boolean> promise)voidServerChannelImpl. publish(Session from, ServerMessage.Mutable mutable, Promise<Boolean> promise)
-