Interface PostIncomingMessageListener


  • public interface PostIncomingMessageListener

    This interface is an extension point to take any action after a message has been received and successfully pushed to the central backlog.

    Since:
    10.0.42
    • Method Detail

      • postIncomingMessage

        void postIncomingMessage​(javax.mail.Message incomingMessage,
                                 IncomingMessageInfo incomingMessageInfo,
                                 javax.mail.Message backlogMessage,
                                 BacklogMessageInfo backlogMessageInfo,
                                 Ticket ticket)
        The method is called after the message has been received and successfully been pushed to the central backlog.
        Parameters:
        incomingMessage - The previously received message. Changes to the incomingMessage will be without any effect.
        incomingMessageInfo - The incomingMessageInfo object provides additional information about the incomingMessage.
        backlogMessage - The message that has been pushed to the central backlog Changes to the backlogMessage will be without any effect.
        backlogMessageInfo - The backlogMessageInfo object provides additional information about the backlogMessage.
        ticket - The ticket that has been created due to the message.
        Since:
        10.0.42