Uses of Interface
org.cometd.bayeux.server.ServerSession.Extension
-
Packages that use ServerSession.Extension Package Description org.cometd.bayeux.server org.cometd.server org.cometd.server.ext -
-
Uses of ServerSession.Extension in org.cometd.bayeux.server
Classes in org.cometd.bayeux.server that implement ServerSession.Extension Modifier and Type Class Description static class
ServerSession.Extension.Adapter
Deprecated.Methods in org.cometd.bayeux.server that return types with arguments of type ServerSession.Extension Modifier and Type Method Description List<ServerSession.Extension>
ServerSession. getExtensions()
Methods in org.cometd.bayeux.server with parameters of type ServerSession.Extension Modifier and Type Method Description void
ServerSession. addExtension(ServerSession.Extension extension)
Adds the given extension to this session.void
ServerSession. removeExtension(ServerSession.Extension extension)
Removes the given extension from this session. -
Uses of ServerSession.Extension in org.cometd.server
Methods in org.cometd.server that return types with arguments of type ServerSession.Extension Modifier and Type Method Description List<ServerSession.Extension>
ServerSessionImpl. getExtensions()
Methods in org.cometd.server with parameters of type ServerSession.Extension Modifier and Type Method Description void
ServerSessionImpl. addExtension(ServerSession.Extension extension)
void
ServerSessionImpl. removeExtension(ServerSession.Extension extension)
-
Uses of ServerSession.Extension in org.cometd.server.ext
Classes in org.cometd.server.ext that implement ServerSession.Extension Modifier and Type Class Description class
AcknowledgedMessagesSessionExtension
Tracks the batch id of messages sent to a client.static class
ActivityExtension.SessionExtension
Monitors the activity of a singleServerSession
, disconnecting it when the max inactivity period is exceeded.class
BinarySessionExtension
An extension that encodes/decodes binary data for aServerSession
.Methods in org.cometd.server.ext that return ServerSession.Extension Modifier and Type Method Description protected ServerSession.Extension
ActivityExtension. newSessionExtension(ServerSession session, ServerMessage handshake)
Creates a newServerSession.Extension
that monitors the activity of the givenServerSession
-