Interface DCCppListener

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void message​(DCCppMessage msg)
      Member function that will be invoked by a DCCppInterface implementation to forward a DCC++ message sent to the layout.
      void message​(DCCppReply msg)
      Member function that will be invoked by a DCCppInterface implementation to forward a DCC++ message from the layout.
      void notifyTimeout​(DCCppMessage msg)
      Member function invoked by an DCCppInterface implementation to notify a sender that an outgoing message timed out and was dropped from the queue.
    • Method Detail

      • message

        void message​(DCCppReply msg)
        Member function that will be invoked by a DCCppInterface implementation to forward a DCC++ message from the layout.
        Parameters:
        msg - The received DCC++ message. Note that this same object may be presented to multiple users. It should not be modified here.
      • message

        void message​(DCCppMessage msg)
        Member function that will be invoked by a DCCppInterface implementation to forward a DCC++ message sent to the layout. Normally, this function will do nothing.
        Parameters:
        msg - The received DCC++ message. Note that this same object may be presented to multiple users. It should not be modified here.
      • notifyTimeout

        void notifyTimeout​(DCCppMessage msg)
        Member function invoked by an DCCppInterface implementation to notify a sender that an outgoing message timed out and was dropped from the queue.
        Parameters:
        msg - the message that timed out.