Class LazyScheduler

  • All Implemented Interfaces:
    java.lang.Iterable<Job>, java.util.Collection<Job>, java.util.concurrent.BlockingQueue<Job>, java.util.Queue<Job>

    @Deprecated
    public class LazyScheduler
    extends LazyPriorityJobQueue
    Deprecated.
    Deprecated, will be removed in the next release. Please use LazyPriorityJobQueue instead.
    • Constructor Summary

      Constructors 
      Constructor Description
      LazyScheduler​(java.util.Iterator<Request> requests)
      Deprecated.
      Constructs an instance of lazy scheduler without a default handler.
      LazyScheduler​(java.util.Iterator<Request> requests, Handler handler)
      Deprecated.
      Constructs an instance of lazy scheduler with a default handler.
    • Method Summary

      • Methods inherited from class java.util.AbstractQueue

        add, addAll, clear, element, remove
      • Methods inherited from class java.util.AbstractCollection

        contains, containsAll, remove, removeAll, retainAll, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.concurrent.BlockingQueue

        add, contains, remove
      • Methods inherited from interface java.util.Collection

        addAll, clear, containsAll, equals, hashCode, parallelStream, removeAll, removeIf, retainAll, spliterator, stream, toArray, toArray, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.Queue

        element, remove
    • Constructor Detail

      • LazyScheduler

        public LazyScheduler​(java.util.Iterator<Request> requests,
                             Handler handler)
        Deprecated.
        Constructs an instance of lazy scheduler with a default handler.
        Parameters:
        requests - An iterator to obtain requests
        handler - The default handler to use
      • LazyScheduler

        public LazyScheduler​(java.util.Iterator<Request> requests)
        Deprecated.
        Constructs an instance of lazy scheduler without a default handler.
        Parameters:
        requests - An iterator to obtain requests