| AwaitingState Constructor (String, IState, JobContinuationOptions) |
Initializes a new instance of the
AwaitingState class with
the given
options along with other parameters.
Namespace: Hangfire.StatesAssembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax public AwaitingState(
[NotNullAttribute] string parentId,
[NotNullAttribute] IState nextState,
JobContinuationOptions options
)
Public Sub New (
<NotNullAttribute> parentId As String,
<NotNullAttribute> nextState As IState,
options As JobContinuationOptions
)
Parameters
- parentId
- Type: SystemString
The identifier of a background job to wait for. - nextState
- Type: Hangfire.StatesIState
The next state for the continuation. - options
- Type: HangfireJobContinuationOptions
Options to configure a continuation.
See Also