public interface IPMessagingClientListener
Modifier and Type | Method and Description |
---|---|
void |
onAttributesChange(java.lang.String attributes)
Called when an attribute has changed.
|
void |
onChannelAdd(Channel channel)
Called when the current user adds a channel to their list of channels.
|
void |
onChannelChange(Channel channel)
Called when one the channel of the current user is changed.
|
void |
onChannelDelete(Channel channel)
Called when one of the channel of the current user is deleted.
|
void |
onChannelHistoryLoaded(Channel channel)
Called when Message synchronization for this Channel completes.
|
void |
onError(int errorCode,
java.lang.String errorText)
Called when an error condition occurs.
|
void onChannelAdd(Channel channel)
channel
- The channel that got added.void onChannelChange(Channel channel)
channel
- The channel that changed.void onChannelDelete(Channel channel)
channel
- The channel that got deleted.void onError(int errorCode, java.lang.String errorText)
errorCode
- The error code specifying the error.errorText
- The error text describing the error condition.void onAttributesChange(java.lang.String attributes)
attributes
- The updated attributes string.void onChannelHistoryLoaded(Channel channel)
channel
- Callback for this Channel.