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