Edit

Share via


AzureSilo.Run Method

Definition

Overloads

Run()

Makes this Orleans silo begin executing and become active. Note: This method call will only return control back to the caller when the silo is shutdown.

Run(CancellationToken)

Makes this Orleans silo begin executing and become active. Note: This method call will only return control back to the caller when the silo is shutdown or an external request for cancellation has been issued.

Run()

Makes this Orleans silo begin executing and become active. Note: This method call will only return control back to the caller when the silo is shutdown.

public void Run ();
member this.Run : unit -> unit
Public Sub Run ()

Applies to

Run(CancellationToken)

Makes this Orleans silo begin executing and become active. Note: This method call will only return control back to the caller when the silo is shutdown or an external request for cancellation has been issued.

public void Run (System.Threading.CancellationToken cancellationToken);
member this.Run : System.Threading.CancellationToken -> unit
Public Sub Run (cancellationToken As CancellationToken)

Parameters

cancellationToken
CancellationToken

Cancellation token.

Applies to