Class BackgroundServerMethodState
- Namespace
- GroupeIsa.Neos.Application.MethodRunners
- Assembly
- GroupeIsa.Neos.Application.Abstractions.dll
Represents the state of a workflow to execute background server methods.
[ExcludeFromCodeCoverage(Justification = "Data class")]
public sealed class BackgroundServerMethodState
- Inheritance
-
BackgroundServerMethodState
- Inherited Members
Properties
CreatedAt
Gets or sets the time at which the background server method was created.
public DateTime CreatedAt { get; set; }
Property Value
ExecutionState
Gets or sets the execution state of the background server method.
public ExecutionState ExecutionState { get; set; }
Property Value
Exists
Gets or sets a value indicating whether the background server method exists.
public bool Exists { get; set; }
Property Value
FailureErrorMessage
Gets or sets the error message if the background server method failed.
public string? FailureErrorMessage { get; set; }
Property Value
FailureErrorType
Gets or sets the error type if the background server method failed.
public string? FailureErrorType { get; set; }
Property Value
FailureStackTrace
Gets or sets the stack trace if the background server method failed.
public string? FailureStackTrace { get; set; }
Property Value
IsCompleted
Gets or sets a value indicating whether the background server method is completed.
public bool IsCompleted { get; set; }
Property Value
IsRunning
Gets or sets a value indicating whether the background server method is running.
public bool IsRunning { get; set; }
Property Value
LastUpdatedAt
Gets or sets the time at which the background server method was last updated.
public DateTime LastUpdatedAt { get; set; }