Uses of Interface
org.cometd.bayeux.Message
Package | Description |
---|---|
org.cometd.bayeux | |
org.cometd.bayeux.client | |
org.cometd.bayeux.server | |
org.cometd.client | |
org.cometd.client.transport | |
org.cometd.common | |
org.cometd.oort | |
org.cometd.server |
-
Uses of Message in org.cometd.bayeux
Subinterfaces of Message in org.cometd.bayeux Modifier and Type Interface Description static interface
Message.Mutable
The mutable version of aMessage
-
Uses of Message in org.cometd.bayeux.client
Methods in org.cometd.bayeux.client with parameters of type Message Modifier and Type Method Description void
ClientSession.MessageListener. onMessage(Message message)
Callback invoked when a remote call response is received.void
ClientSessionChannel.MessageListener. onMessage(ClientSessionChannel channel, Message message)
Callback invoked when a message is received on the givenchannel
. -
Uses of Message in org.cometd.bayeux.server
Subinterfaces of Message in org.cometd.bayeux.server Modifier and Type Interface Description interface
ServerMessage
Representation of a server side message.static interface
ServerMessage.Mutable
The mutable version of aServerMessage
Methods in org.cometd.bayeux.server with parameters of type Message Modifier and Type Method Description boolean
ServerSession.MaxQueueListener. queueMaxed(ServerSession session, Queue<ServerMessage> queue, ServerSession sender, Message message)
Callback invoked to notify when the message queue is exceeding the value configured for the transport with the option "maxQueue". -
Uses of Message in org.cometd.client
Methods in org.cometd.client with parameters of type Message Modifier and Type Method Description protected void
BayeuxClient. onTransportFailure(Message message, ClientTransport.FailureInfo failureInfo, ClientTransport.FailureHandler handler)
Method parameters in org.cometd.client with type arguments of type Message Modifier and Type Method Description protected void
BayeuxClient. messagesFailure(Throwable cause, List<? extends Message> messages)
void
BayeuxClient. onFailure(Throwable failure, List<? extends Message> messages)
Callback method invoked when the given messages have failed to be sent.void
BayeuxClient. onSending(List<? extends Message> messages)
Callback method invoked when the given messages have hit the network towards the Bayeux server. -
Uses of Message in org.cometd.client.transport
Method parameters in org.cometd.client.transport with type arguments of type Message Modifier and Type Method Description void
TransportListener.Empty. onFailure(Throwable failure, List<? extends Message> messages)
void
TransportListener. onFailure(Throwable failure, List<? extends Message> messages)
Callback method invoked when a failure to send or receive messages occurs.void
TransportListener.Empty. onSending(List<? extends Message> messages)
void
TransportListener. onSending(List<? extends Message> messages)
Callback method invoked when the batch of messages is being sent. -
Uses of Message in org.cometd.common
Classes in org.cometd.common that implement Message Modifier and Type Class Description class
HashMapMessage
Methods in org.cometd.common with parameters of type Message Modifier and Type Method Description protected void
AbstractClientSession.AbstractSessionChannel. notifyMessageListeners(Message message)
protected void
AbstractClientSession.AbstractSessionChannel. notifyOnMessage(ClientSessionChannel.MessageListener listener, Message message)
Constructors in org.cometd.common with parameters of type Message Constructor Description HashMapMessage(Message message)
-
Uses of Message in org.cometd.oort
Methods in org.cometd.oort with parameters of type Message Modifier and Type Method Description boolean
Oort. isOortHandshake(Message handshake)
protected void
Oort. joinComets(Message message)
protected void
Seti. receiveBroadcast(Message message)
Receives messages broadcast by other Setis in the cloud.protected void
Seti. receiveDirect(Message message)
Receives messages directly from other Setis in the cloud, containing messages to be delivered to sessions connected to this comet. -
Uses of Message in org.cometd.server
Classes in org.cometd.server that implement Message Modifier and Type Class Description class
ServerMessageImpl