Interface MessageReceivedListener
-
public interface MessageReceivedListener
User needs to implement this interface in order to receive the message received events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onMessageReceived​(java.lang.Object sender, MessageEventArgs args)
Listener for receiving message in the application.
-
-
-
Method Detail
-
onMessageReceived
void onMessageReceived​(java.lang.Object sender, MessageEventArgs args)
Listener for receiving message in the application.- Parameters:
sender
- Sender's information.args
- Message received event arguments.
-
-