The Event Notification Service allows the Sale System (EPOS application) to receive real-time transaction process events from the payment terminal.
EventNotificationParam represents a single event notification sent from the payment terminal to the Sale System.
Date and time when the event occurred.
Event reported by the POI to the Sale System.
Identification of Initiating Party.
Custom status message of the event notification.
RetailerManager.setOnEventNotificationCallback((param) -> {
EventToNotify2Code event = param.getEvent();
switch (event) {
case CRDI:
// Card Inserted
break;
case PINE:
// Waiting for PIN Entry
break;
}
});