Class Requestor.Status

  • Enclosing class:
    Requestor

    private static class Requestor.Status
    extends Object
    • Field Detail

      • INIT

        public static final int INIT
        The requestor is free: it can be called by a client thread.
        See Also:
        Constant Field Values
      • RUN

        public static final int RUN
        The requestor is busy: the client thread is waiting. Two threads can make a call: 1- the demultiplexer thread can call replyReceived and replyAborted. 2- another client thread can abort the request.
        See Also:
        Constant Field Values
      • DONE

        public static final int DONE
        The requestor is either completed (by the demultiplxer thread) or aborted (by another client thread or a timeout). This state is transitional. It enables the requesting client thread to finalize its request.
        See Also:
        Constant Field Values
      • names

        private static final String[] names
    • Constructor Detail

      • Status

        private Status()
    • Method Detail

      • toString

        public static String toString​(int status)