-
Notifications
You must be signed in to change notification settings - Fork 2
MessageReceivedEvent
Ajša Terko edited this page Nov 11, 2025
·
1 revision
Getter for the message field.
none
-
String- The value of themessagefield, which represents the received message.
ApplicationCallEventListener applicationCallEventListener = new DefaultApplicationCallEventListener() {
@Override
public void onMessageReceived(MessageReceivedEvent messageReceivedEvent) {
String message = messageReceivedEvent.getMessage();
}
};