Uses of Class
rocks.xmpp.core.stanza.model.Message
-
Packages that use Message Package Description rocks.xmpp.core.session Provides classes related to an XMPP session.rocks.xmpp.core.stanza Provides classes for XML stanza management (message, presence, IQ).rocks.xmpp.core.stanza.model Provides XML Stanzas and Stanza Errors.rocks.xmpp.core.stanza.model.client rocks.xmpp.core.stanza.model.server rocks.xmpp.extensions.address.model Provides XML schema implementations of XEP-0033: Extended Stanza Addressing.rocks.xmpp.extensions.component.accept.model Provides XML schema implementations of XEP-0050: Ad-Hoc Commands.rocks.xmpp.extensions.forward Provides classes for XEP-0297: Stanza Forwarding.rocks.xmpp.extensions.muc Provides classes for XEP-0045: Multi-User Chat.rocks.xmpp.extensions.receipts Provides classes for XEP-0184: Message Delivery Receipts.rocks.xmpp.extensions.rtt Provides classes for XEP-0301: In-Band Real Time Text.rocks.xmpp.im.chat Provides core classes needed for chat. -
-
Uses of Message in rocks.xmpp.core.session
Methods in rocks.xmpp.core.session that return types with arguments of type Message Modifier and Type Method Description AsyncResult<Message>
XmppSession. sendAndAwaitMessage(Message stanza, Predicate<Message> filter)
Sends a stanza and returns an async result which can wait for the message stanza, which matches the predicate, to arrive.SendTask<Message>
XmppSession. sendMessage(Message message)
Sends a message.Methods in rocks.xmpp.core.session with parameters of type Message Modifier and Type Method Description AsyncResult<Message>
XmppSession. sendAndAwaitMessage(Message stanza, Predicate<Message> filter)
Sends a stanza and returns an async result which can wait for the message stanza, which matches the predicate, to arrive.SendTask<Message>
XmppSession. sendMessage(Message message)
Sends a message.Method parameters in rocks.xmpp.core.session with type arguments of type Message Modifier and Type Method Description AsyncResult<Message>
XmppSession. sendAndAwaitMessage(Message stanza, Predicate<Message> filter)
Sends a stanza and returns an async result which can wait for the message stanza, which matches the predicate, to arrive. -
Uses of Message in rocks.xmpp.core.stanza
Methods in rocks.xmpp.core.stanza that return Message Modifier and Type Method Description Message
MessageEvent. getMessage()
Gets the message.Constructors in rocks.xmpp.core.stanza with parameters of type Message Constructor Description MessageEvent(Object source, Message message, boolean inbound)
Constructs a message event. -
Uses of Message in rocks.xmpp.core.stanza.model
Methods in rocks.xmpp.core.stanza.model that return Message Modifier and Type Method Description Message
Message. createError(Condition condition)
Message
Message. createError(StanzaError error)
-
Uses of Message in rocks.xmpp.core.stanza.model.client
Subclasses of Message in rocks.xmpp.core.stanza.model.client Modifier and Type Class Description class
ClientMessage
The implementation of the<message/>
element in thejabber:client
namespace.Methods in rocks.xmpp.core.stanza.model.client with parameters of type Message Modifier and Type Method Description static ClientMessage
ClientMessage. from(Message m)
Creates a message for thejabber:client
namespace from a generic message. -
Uses of Message in rocks.xmpp.core.stanza.model.server
Subclasses of Message in rocks.xmpp.core.stanza.model.server Modifier and Type Class Description class
ServerMessage
The implementation of the<message/>
element in thejabber:server
namespace.Methods in rocks.xmpp.core.stanza.model.server with parameters of type Message Modifier and Type Method Description static ServerMessage
ServerMessage. from(Message m)
Creates a message for thejabber:server
namespace from a generic message. -
Uses of Message in rocks.xmpp.extensions.address.model
Methods in rocks.xmpp.extensions.address.model with parameters of type Message Modifier and Type Method Description static boolean
Addresses. createReply(Message original, Message reply)
Creates a reply for a message. -
Uses of Message in rocks.xmpp.extensions.component.accept.model
Subclasses of Message in rocks.xmpp.extensions.component.accept.model Modifier and Type Class Description class
ComponentMessage
The implementation of the<message/>
element in thejabber:component:accept
namespace.Methods in rocks.xmpp.extensions.component.accept.model with parameters of type Message Modifier and Type Method Description static ComponentMessage
ComponentMessage. from(Message m)
Creates a message for thejabber:client
namespace from a generic message. -
Uses of Message in rocks.xmpp.extensions.forward
Methods in rocks.xmpp.extensions.forward with parameters of type Message Modifier and Type Method Description void
StanzaForwardingManager. forwardMessage(Message message, Jid to)
Forwards a message to another XMPP entity. -
Uses of Message in rocks.xmpp.extensions.muc
Methods in rocks.xmpp.extensions.muc that return types with arguments of type Message Modifier and Type Method Description AsyncResult<Message>
ChatRoom. changeSubject(String subject)
Changes the room subject.SendTask<Message>
ChatRoom. sendMessage(String message)
Sends a message to the room.SendTask<Message>
ChatRoom. sendMessage(Message message)
Sends a message to the room.Methods in rocks.xmpp.extensions.muc with parameters of type Message Modifier and Type Method Description SendTask<Message>
ChatRoom. sendMessage(Message message)
Sends a message to the room. -
Uses of Message in rocks.xmpp.extensions.receipts
Method parameters in rocks.xmpp.extensions.receipts with type arguments of type Message Modifier and Type Method Description void
MessageDeliveryReceiptsManager. setMessageFilter(Predicate<Message> messageFilter)
Outbound messages, which pass the filter automatically request a receipt, i.e. a<request/>
extension. -
Uses of Message in rocks.xmpp.extensions.rtt
Methods in rocks.xmpp.extensions.rtt that return types with arguments of type Message Modifier and Type Method Description SendTask<Message>
OutboundRealTimeMessage. commit()
Commits the real-time message. -
Uses of Message in rocks.xmpp.im.chat
Methods in rocks.xmpp.im.chat that return types with arguments of type Message Modifier and Type Method Description abstract SendTask<Message>
Chat. sendMessage(String message)
Sends a message to the chat.abstract SendTask<Message>
Chat. sendMessage(Message message)
Sends a message to the chat.SendTask<Message>
ChatSession. sendMessage(String message)
Sends a chat message to the chat partner.SendTask<Message>
ChatSession. sendMessage(Message message)
Sends a chat message to the chat partner.Methods in rocks.xmpp.im.chat with parameters of type Message Modifier and Type Method Description abstract SendTask<Message>
Chat. sendMessage(Message message)
Sends a message to the chat.SendTask<Message>
ChatSession. sendMessage(Message message)
Sends a chat message to the chat partner.
-