Uses of Class
org.cometd.bayeux.ChannelId
-
Packages that use ChannelId Package Description org.cometd.bayeux org.cometd.bayeux.server org.cometd.client org.cometd.common org.cometd.server org.cometd.server.authorizer -
-
Uses of ChannelId in org.cometd.bayeux
Methods in org.cometd.bayeux that return ChannelId Modifier and Type Method Description ChannelId
Channel. getChannelId()
ChannelId
Message. getChannelId()
Convenience method to retrieve theMessage.CHANNEL_FIELD
.Methods in org.cometd.bayeux with parameters of type ChannelId Modifier and Type Method Description Map<String,String>
ChannelId. bind(ChannelId target)
If thisChannelId
is a template, and the giventarget
ChannelId
is non-wild and non-template, and the two have the samedepth()
, then binds the variable(s) defined in this template with the values of the segments defined by the targetChannelId
.boolean
ChannelId. isAncestorOf(ChannelId id)
boolean
ChannelId. isParentOf(ChannelId id)
boolean
ChannelId. matches(ChannelId channelId)
Tests whether thisChannelId
matches the givenChannelId
. -
Uses of ChannelId in org.cometd.bayeux.server
Methods in org.cometd.bayeux.server with parameters of type ChannelId Modifier and Type Method Description Authorizer.Result
Authorizer. authorize(Authorizer.Operation operation, ChannelId channel, ServerSession session, ServerMessage message)
Blocking version ofAuthorizer.authorize(Operation, ChannelId, ServerSession, ServerMessage, Promise)
.default void
Authorizer. authorize(Authorizer.Operation operation, ChannelId channel, ServerSession session, ServerMessage message, Promise<Authorizer.Result> promise)
Callback invoked to authorize the givenoperation
on the givenchannel
. -
Uses of ChannelId in org.cometd.client
Methods in org.cometd.client that return ChannelId Modifier and Type Method Description protected ChannelId
BayeuxClient. newChannelId(String channelId)
Methods in org.cometd.client with parameters of type ChannelId Modifier and Type Method Description protected AbstractClientSession.AbstractSessionChannel
BayeuxClient. newChannel(ChannelId channelId)
Constructors in org.cometd.client with parameters of type ChannelId Constructor Description BayeuxClientChannel(ChannelId channelId)
-
Uses of ChannelId in org.cometd.common
Methods in org.cometd.common that return ChannelId Modifier and Type Method Description ChannelId
AbstractClientSession.AbstractSessionChannel. getChannelId()
ChannelId
HashMapMessage. getChannelId()
protected abstract ChannelId
AbstractClientSession. newChannelId(String channelId)
Methods in org.cometd.common with parameters of type ChannelId Modifier and Type Method Description ClientSessionChannel
AbstractClientSession. getChannel(ChannelId channelId)
protected abstract AbstractClientSession.AbstractSessionChannel
AbstractClientSession. newChannel(ChannelId channelId)
Constructors in org.cometd.common with parameters of type ChannelId Constructor Description AbstractSessionChannel(ChannelId id)
-
Uses of ChannelId in org.cometd.server
Methods in org.cometd.server that return ChannelId Modifier and Type Method Description ChannelId
ServerChannelImpl. getChannelId()
ChannelId
BayeuxServerImpl. newChannelId(String id)
protected ChannelId
LocalSessionImpl. newChannelId(String channelId)
Methods in org.cometd.server with parameters of type ChannelId Modifier and Type Method Description protected AbstractClientSession.AbstractSessionChannel
LocalSessionImpl. newChannel(ChannelId channelId)
Constructors in org.cometd.server with parameters of type ChannelId Constructor Description LocalChannel(ChannelId channelId)
ServerChannelImpl(BayeuxServerImpl bayeux, ChannelId id)
-
Uses of ChannelId in org.cometd.server.authorizer
Methods in org.cometd.server.authorizer with parameters of type ChannelId Modifier and Type Method Description Authorizer.Result
GrantAuthorizer. authorize(Authorizer.Operation operation, ChannelId channel, ServerSession session, ServerMessage message)
-