本文整理匯總了Java中org.jivesoftware.smack.packet.Message.setThread方法的典型用法代碼示例。如果您正苦於以下問題:Java Message.setThread方法的具體用法?Java Message.setThread怎麽用?Java Message.setThread使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.jivesoftware.smack.packet.Message
的用法示例。
在下文中一共展示了Message.setThread方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: processMessageWithoutAlias
import org.jivesoftware.smack.packet.Message; //導入方法依賴的package包/類
/**
* This method sends a message without an alias, the listener should send an error message back
* to the sender.
*
* @param listener
* The listener.
* @param connection
* The connection.
* @throws NotConnectedException
*/
private void processMessageWithoutAlias(PacketListener listener, XMPPConnection connection)
throws NotConnectedException {
Message message = new Message();
String sender = user.getAlias() + ".global" + USER_SUFFIX;
message.setFrom(sender);
message.setThread(blog.getNameIdentifier() + ".global" + BLOG_SUFFIX);
message.setBody("Empty");
listener.processPacket(message);
Packet packet = connection.getLastPacket();
Assert.assertEquals(packet.getTo(), sender);
Assert.assertTrue(((Message) packet).getBody().contains("To post to a topic"));
}
示例2: sendMessage
import org.jivesoftware.smack.packet.Message; //導入方法依賴的package包/類
/**
* Sends a message to the other chat participant. The thread ID, recipient,
* and message type of the message will automatically set to those of this chat.
*
* @param message the message to send.
* @throws NotConnectedException
*/
public void sendMessage(Message message) throws NotConnectedException {
// Force the recipient, message type, and thread ID since the user elected
// to send the message through this chat object.
message.setTo(participant);
message.setType(Message.Type.chat);
message.setThread(threadID);
chatManager.sendMessage(this, message);
}
示例3: deliver
import org.jivesoftware.smack.packet.Message; //導入方法依賴的package包/類
/**
* Delivers a message directly to this chat, which will add the message
* to the collector and deliver it to all listeners registered with the
* Chat. This is used by the XMPPConnection class to deliver messages
* without a thread ID.
*
* @param message the message.
*/
void deliver(Message message) {
// Because the collector and listeners are expecting a thread ID with
// a specific value, set the thread ID on the message even though it
// probably never had one.
message.setThread(threadID);
for (ChatMessageListener listener : listeners) {
listener.processMessage(this, message);
}
}
示例4: createChatPacket
import org.jivesoftware.smack.packet.Message; //導入方法依賴的package包/類
private Message createChatPacket(final String threadId, final boolean isFullJid) {
Message chatMsg = new Message("[email protected]", Message.Type.chat);
chatMsg.setBody("the body message - " + System.currentTimeMillis());
chatMsg.setFrom("[email protected]" + (isFullJid ? "/resource" : ""));
chatMsg.setThread(threadId);
return chatMsg;
}