Interface MessengerConnectorStatusSender
- All Known Subinterfaces:
- MessengerConnector
public interface MessengerConnectorStatusSender
The 
MessengerConnectorStatusSender is an interface that implements
 the callback event functions triggered when statuses need to be sent.- Since:
- 12.20
- 
Method SummaryModifier and TypeMethodDescriptiondefault voidsendReadStatus(OutgoingMessengerMessageReadStatusInfo outgoingMessengerMessageReadStatusInfo) The method is called to send a read status back to its source or any other destination that can be addressed by this MessengerConnector.default voidsendTypingStatus(OutgoingMessengerConversationTypingStatusInfo outgoingMessengerConversationTypingStatusInfo) The method is called to send a typing status back to its source or any other destination that can be addressed by this MessengerConnector.
- 
Method Details- 
sendTypingStatusdefault void sendTypingStatus(OutgoingMessengerConversationTypingStatusInfo outgoingMessengerConversationTypingStatusInfo) throws MessengerConnectorPermanentSendException, MessengerConnectorTemporarySendException The method is called to send a typing status back to its source or any other destination that can be addressed by this MessengerConnector.- Parameters:
- outgoingMessengerConversationTypingStatusInfo- the- OutgoingMessengerConversationTypingStatusInfoobject containing the status to be sent and additional information about the status
- Throws:
- MessengerConnectorPermanentSendException- Throw a MessengerConnectorPermanentSendException to indicate a permanent error.
- MessengerConnectorTemporarySendException- Throw a MessengerConnectorTemporarySendException to indicate a temporary error.
- Since:
- 12.20
 
- 
sendReadStatusdefault void sendReadStatus(OutgoingMessengerMessageReadStatusInfo outgoingMessengerMessageReadStatusInfo) throws MessengerConnectorPermanentSendException, MessengerConnectorTemporarySendException The method is called to send a read status back to its source or any other destination that can be addressed by this MessengerConnector.- Parameters:
- outgoingMessengerMessageReadStatusInfo- the- OutgoingMessengerMessageReadStatusInfoobject containing the status to be sent and additional information about the status
- Throws:
- MessengerConnectorPermanentSendException- Throw a MessengerConnectorPermanentSendException to indicate a permanent error.
- MessengerConnectorTemporarySendException- Throw a MessengerConnectorTemporarySendException to indicate a temporary error.
- Since:
- 12.20
 
 
-