Class CometdWebConferencingService.EventProxy
- java.lang.Object
-
- org.exoplatform.webconferencing.cometd.CometdWebConferencingService.EventProxy
-
- All Implemented Interfaces:
Externalizable,Serializable
- Direct Known Subclasses:
CometdWebConferencingService.CallEventProxy
- Enclosing class:
- CometdWebConferencingService
public static class CometdWebConferencingService.EventProxy extends Object implements Externalizable
The Class CallEventProxy.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringCLOSEThe Constant CLOSE - means it's closing event type (user call change, but user channel closed).static StringINITThe Constant INIT - means it's initial event type (not actually call change, but user channel connected).protected StringtypeThe event type.
-
Constructor Summary
Constructors Constructor Description EventProxy()Instantiates a new event proxy of initial type (for serialization).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreadExternal(ObjectInput in)StringtoString()voidwriteExternal(ObjectOutput out)
-
-
-
Field Detail
-
INIT
public static final String INIT
The Constant INIT - means it's initial event type (not actually call change, but user channel connected).- See Also:
- Constant Field Values
-
CLOSE
public static final String CLOSE
The Constant CLOSE - means it's closing event type (user call change, but user channel closed).- See Also:
- Constant Field Values
-
type
protected String type
The event type.
-
-
Method Detail
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOException
-
-