Class FutureLoad

java.lang.Object
hudson.model.queue.FutureLoad

public final class FutureLoad extends Object
Estimated future load to Hudson.
Author:
Kohsuke Kawaguchi
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final long
    How long is task expected to continue, in milliseconds?
    final int
    How many executors is this going to consume?
    final long
    When is this load expected to start?
  • Constructor Summary

    Constructors
    Constructor
    Description
    FutureLoad(long startTime, long duration, int numExecutors)
     
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • startTime

      public final long startTime
      When is this load expected to start?
    • numExecutors

      public final int numExecutors
      How many executors is this going to consume?
    • duration

      public final long duration
      How long is task expected to continue, in milliseconds?
  • Constructor Details

    • FutureLoad

      public FutureLoad(long startTime, long duration, int numExecutors)
  • Method Details