Class GetNewMemberRoomsRequest
- java.lang.Object
-
- org.jivesoftware.openfire.muc.cluster.GetNewMemberRoomsRequest
-
- All Implemented Interfaces:
Externalizable
,Serializable
,Runnable
,ClusterTask<List<RoomInfo>>
public class GetNewMemberRoomsRequest extends Object implements ClusterTask<List<RoomInfo>>
Task requested by each cluster node when a new node joins the cluster. Each existing cluster node will request the list of rooms with occupantshosted by
the new cluster node.- Author:
- Gaston Dombiak
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetNewMemberRoomsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<RoomInfo>
getResult()
void
readExternal(ObjectInput in)
void
run()
void
writeExternal(ObjectOutput out)
-
-
-
Method Detail
-
getResult
public List<RoomInfo> getResult()
- Specified by:
getResult
in interfaceClusterTask<List<RoomInfo>>
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternal
in interfaceExternalizable
- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternal
in interfaceExternalizable
- Throws:
IOException
ClassNotFoundException
-
-