All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codeheadsystems.queue.State Maven / Gradle / Ivy

The newest version!
package com.codeheadsystems.queue;

/**
 * The enum Queue state.
 */
public enum State {

  /**
   * Pending queue state. Used for adding requests to the queue.
   */
  PENDING,
  /**
   * Activate queue state. When the worker is assigned the request, and it is close to running.
   */
  ACTIVATING,
  /**
   * PROCESSING queue state. Used when the work is executing the request.
   */
  PROCESSING

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy