Interface FutureReply<T>

Type Parameters:
T - The type of the reply.

public interface FutureReply<T>
A callback interface for when a future reply is received.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    reply(T reply)
    Called when a reply is received.
  • Method Details

    • reply

      void reply(T reply)
      Called when a reply is received.
      Parameters:
      reply - The reply.