Table of Contents

Struct ServerMethodStartOptions

Namespace
GroupeIsa.Neos.Application.MethodRunners
Assembly
GroupeIsa.Neos.Application.Abstractions.dll

Represents options for starting a server method in background.

public struct ServerMethodStartOptions
Inherited Members

Constructors

ServerMethodStartOptions()

Initializes a new instance of the ServerMethodStartOptions struct.

public ServerMethodStartOptions()

ServerMethodStartOptions(string)

Initializes a new instance of the ServerMethodStartOptions struct.

public ServerMethodStartOptions(string identifier)

Parameters

identifier string

Identifier of the server method background execution.

Properties

Identifier

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

public string? Identifier { readonly get; set; }

Property Value

string

StartupTimeout

Gets or sets the startup timeout (the execution is canceled if the server method isn't started at those time).

public TimeSpan? StartupTimeout { readonly get; set; }

Property Value

TimeSpan?

Timeout

Gets or sets the timeout (the execution is canceled if the server method isn't finished at those time).

public TimeSpan? Timeout { readonly get; set; }

Property Value

TimeSpan?