Interface RequestTracker


public interface RequestTracker
A tracker for synchronous requests.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
     
    void
    The reply was just received.
    void
    The request timed-out before receiving the reply.
    void
    Resets the send time to the current time.
  • Method Details Link icon

    • destination Link icon

      Address destination()
      Returns:
      The destination Address of the request. It is never null.
    • resetSendTime Link icon

      void resetSendTime()
      Resets the send time to the current time.
    • onComplete Link icon

      void onComplete()
      The reply was just received.
    • onTimeout Link icon

      void onTimeout()
      The request timed-out before receiving the reply.