Click or drag to resize
BackgroundJob Methods
Methods
  NameDescription
Public methodStatic memberContinueWith(String, ExpressionAction)
Public methodStatic memberContinueWith(String, ExpressionAction, JobContinuationOptions)
Public methodStatic memberContinueWithT(String, ExpressionActionT)
Public methodStatic memberContinueWithT(String, ExpressionActionT, JobContinuationOptions)
Public methodStatic memberDelete(String)
Changes state of a job with the specified jobId to the DeletedState.
Public methodStatic memberDelete(String, String)
Changes state of a job with the specified jobId to the DeletedState. State change is only performed if current job state is equal to the fromState value.
Public methodStatic memberEnqueue(ExpressionAction)
Creates a new fire-and-forget job based on a given method call expression.
Public methodStatic memberEnqueueT(ExpressionActionT)
Creates a new fire-and-forget job based on a given method call expression.
Public methodStatic memberRequeue(String)
Changes state of a job with the specified jobId to the EnqueuedState.
Public methodStatic memberRequeue(String, String)
Changes state of a job with the specified jobId to the EnqueuedState. If fromState value is not null, state change will be performed only if the current state name of a job equal to the given value.
Public methodStatic memberSchedule(ExpressionAction, DateTimeOffset)
Creates a new background job based on a specified method call expression and schedules it to be enqueued at the given moment of time.
Public methodStatic memberSchedule(ExpressionAction, TimeSpan)
Creates a new background job based on a specified static method call expression and schedules it to be enqueued after a given delay.
Public methodStatic memberScheduleT(ExpressionActionT, DateTimeOffset)
Creates a new background job based on a specified method call expression and schedules it to be enqueued at the given moment of time.
Public methodStatic memberScheduleT(ExpressionActionT, TimeSpan)
Creates a new background job based on a specified instance method call expression and schedules it to be enqueued after a given delay.
Top
See Also