Interface RpcCallback

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void leftOver​(java.io.Serializable msg, Member sender)
      If the reply has already been sent to the requesting thread, the rpc callback can handle any data that comes in after the fact.
      java.io.Serializable replyRequest​(java.io.Serializable msg, Member sender)
      Allows sending a response to a received message.
    • Method Detail

      • replyRequest

        java.io.Serializable replyRequest​(java.io.Serializable msg,
                                          Member sender)
        Allows sending a response to a received message.
        Parameters:
        msg - The message
        sender - Member
        Returns:
        Serializable object, null if no reply should be sent
      • leftOver

        void leftOver​(java.io.Serializable msg,
                      Member sender)
        If the reply has already been sent to the requesting thread, the rpc callback can handle any data that comes in after the fact.
        Parameters:
        msg - The message
        sender - Member