mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Merge pull request #223 from fuentesj11/update-docs5
Update/Edit messaging.md
This commit is contained in:
commit
b472ba0dd2
1 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@ and then send them a text message:
|
|||
```
|
||||
// Assume we've created an XMPPConnection name "connection"._
|
||||
ChatManager chatManager = ChatManager.getInstanceFor(connection);
|
||||
chatManager.addListener(new IncomingChatMessageListener() {
|
||||
chatManager.addIncomingListener(new IncomingChatMessageListener() {
|
||||
@Override
|
||||
void newIncomingMessage(EntityBareJid from, Message message, Chat chat) {
|
||||
System.out.println("New message from " + from + ": " + message.getBody());
|
||||
|
@ -26,14 +26,14 @@ chatManager.addListener(new IncomingChatMessageListener() {
|
|||
});
|
||||
EntityBareJid jid = JidCreate.entityBareFrom("jsmith@jivesoftware.com");
|
||||
Chat chat = chatManager.chatWith(jid);
|
||||
chat.sendMessage("Howdy!");
|
||||
chat.send("Howdy!");
|
||||
}
|
||||
```
|
||||
|
||||
The `Chat.sendMessage(String)` method is a convenience method that creates a
|
||||
The `Chat.send(String)` method is a convenience method that creates a
|
||||
Message object, sets the body using the String parameter, then sends the
|
||||
message. In the case that you wish to set additional values on a Message
|
||||
before sending it, use
|
||||
before sending it, use the
|
||||
`Chat.send(Message)` method, as in the following code snippet:
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue