QueueEventType enum Null safety

types of Queue Event

Inheritance

Constructors

QueueEventType()
const

Values

queueStart → const QueueEventType

when queue starts

QueueEventType()
beforeJob → const QueueEventType

before each job executing

QueueEventType()
afterJob → const QueueEventType

after each job executing

QueueEventType()
queueEnd → const QueueEventType

when queue ends

QueueEventType()
newJobAdded → const QueueEventType

when new job is added to the queue

QueueEventType()
queueClosed → const QueueEventType

when queue is closed

QueueEventType()
queueStopped → const QueueEventType

when queue is stopped

QueueEventType()
violateAddWhenClosed → const QueueEventType

when trying to add new job when queue is closed

QueueEventType()
retryJob → const QueueEventType

emit when retry

QueueEventType()
retryLimitReached → const QueueEventType

emit when a job has reach it retry limit

QueueEventType()

Properties

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

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent 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]