Home | History | Annotate | Download | only in smackx

Lines Matching refs:reply

91      *                   indicating that they can reply to any address.
93 * indicating that they can reply to any address.
94 * @param noReply true means that receivers should not reply to the message.
120 * Sends a reply to a previously received packet that was sent to multiple recipients. Before
121 * attempting to send the reply message some checkings are performed. If any of those checkings
124 * @param connection the connection to use to send the reply.
126 * @param reply the new message to send as a reply.
128 * original message cannot be replied or reply should be sent to a room.
130 public static void reply(Connection connection, Message original, Message reply)
140 throw new XMPPException("Reply should be sent through a room");
142 // Any <thread/> element from the initial message MUST be copied into the reply.
144 reply.setThread(original.getThread());
148 // Send reply to the reply_to address
149 reply.setTo(replyAddress.getJid());
150 connection.sendPacket(reply);
153 // Send reply to multiple recipients
179 sendThroughService(connection, reply, to, cc, null, null, null, false,
184 sendToIndividualRecipients(connection, reply, to, cc, null);