
com.codeheadsystems.queue.State Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of local-queue Show documentation
Show all versions of local-queue Show documentation
LQ: a minimalistic local queue
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