QueueEventType enum

types of Queue Event

Inheritance

Constructors

QueueEventType()
const

Values

queueStart → const QueueEventType

when queue starts

beforeJob → const QueueEventType

before each job executing

afterJob → const QueueEventType

after each job executing

queueEnd → const QueueEventType

when queue ends

newJobAdded → const QueueEventType

when new job is added to the queue

queueClosed → const QueueEventType

when queue is closed

queueStopped → const QueueEventType

when queue is stopped

violateAddWhenClosed → const QueueEventType

when trying to add new job when queue is closed

retryJob → const QueueEventType

emit when retry

retryLimitReached → const QueueEventType

emit when a job has reach it retry limit

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<QueueEventType>
A constant List of the values in this enum, in order of their declaration.
[queueStart, beforeJob, afterJob, queueEnd, newJobAdded, queueClosed, queueStopped, violateAddWhenClosed, retryJob, retryLimitReached]