Table of Contents

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

DateTime

ExecutionState

Gets or sets the execution state of the background server method.

public ExecutionState ExecutionState { get; set; }

Property Value

ExecutionState

Exists

Gets or sets a value indicating whether the background server method exists.

public bool Exists { get; set; }

Property Value

bool

FailureErrorMessage

Gets or sets the error message if the background server method failed.

public string? FailureErrorMessage { get; set; }

Property Value

string

FailureErrorType

Gets or sets the error type if the background server method failed.

public string? FailureErrorType { get; set; }

Property Value

string

FailureStackTrace

Gets or sets the stack trace if the background server method failed.

public string? FailureStackTrace { get; set; }

Property Value

string

IsCompleted

Gets or sets a value indicating whether the background server method is completed.

public bool IsCompleted { get; set; }

Property Value

bool

IsRunning

Gets or sets a value indicating whether the background server method is running.

public bool IsRunning { get; set; }

Property Value

bool

LastUpdatedAt

Gets or sets the time at which the background server method was last updated.

public DateTime LastUpdatedAt { get; set; }

Property Value

DateTime