Class PriorityThreadPoolExecutor.SessionQueue

  • Enclosing class:
    PriorityThreadPoolExecutor

    private class PriorityThreadPoolExecutor.SessionQueue
    extends java.lang.Object
    A class used to store the ordered list of events to be processed by the session, and the current task state.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean processingCompleted
      The current task state
      private java.util.Queue<java.lang.Runnable> tasksQueue
      A queue of ordered event waiting to be processed
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private SessionQueue()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • tasksQueue

        private final java.util.Queue<java.lang.Runnable> tasksQueue
        A queue of ordered event waiting to be processed
      • processingCompleted

        private boolean processingCompleted
        The current task state
    • Constructor Detail

      • SessionQueue

        private SessionQueue()