Smack/extensions/src/main/java/org/jivesoftware/smackx/muc
Florian Schmaus 7bd7b3d24c Improve packet send and result collecting API
Instead of repeating the same pattern, when sending an IQ get/set packet
and collecting the response

PacketFilter filter = new PacketIDFilter(request.getPacketID()),
PacketCollector collector = connection.createPacketCollector(filter);
connection.sendPacket(reg);
IQ result = (IQ)collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
// Stop queuing results
collector.cancel();
if (result == null) {
    throw new XMPPException("No response from server.");
}
else if (result.getType() == IQ.Type.ERROR) {
    throw new XMPPException(result.getError());
}

the API got redesigned, so that the above code block can be replaced
with

Packet result = connection.createPacketCollectorAndSend(request).nextResultOrThrow();
2014-02-18 19:39:47 +01:00
..
packet Normalize newlines to '\n' 2014-02-17 23:58:40 +01:00
provider Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
Affiliate.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
ConnectionDetachedPacketCollector.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
DeafOccupantInterceptor.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
DefaultParticipantStatusListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
DefaultUserStatusListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
DiscussionHistory.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
HostedRoom.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
InvitationListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
InvitationRejectionListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
MultiUserChat.java Improve packet send and result collecting API 2014-02-18 19:39:47 +01:00
Occupant.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
PacketMultiplexListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
ParticipantStatusListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
RoomInfo.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
RoomListenerMultiplexor.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
SubjectUpdatedListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
UserStatusListener.java Activate checkstyle and add missing license headers 2014-02-17 20:09:55 +01:00
package.html Migrate from Ant to Gradle (SMACK-265) 2014-02-14 18:46:33 +01:00