Partager via


FabricRuntime.CreateAsync Méthode

Définition

Surcharges

CreateAsync(TimeSpan, CancellationToken)

Crée l’objet FabricRuntime de manière asynchrone avec les et spécifiés timeoutcancellationToken.

CreateAsync(Action, TimeSpan, CancellationToken)

Crée l’objet FabricRuntime de façon asynchrone avec la fonction de rappel spécifiée qui sera exécutée si le runtime sous-jacent se termine ou se ferme pour une raison quelconque, timeoutet cancellationToken.

CreateAsync(TimeSpan, CancellationToken)

Crée l’objet FabricRuntime de manière asynchrone avec les et spécifiés timeoutcancellationToken.

public static System.Threading.Tasks.Task<System.Fabric.FabricRuntime> CreateAsync (TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
static member CreateAsync : TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Fabric.FabricRuntime>
Public Shared Function CreateAsync (timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of FabricRuntime)

Paramètres

timeout
TimeSpan

La durée maximale pendant laquelle Service Fabric autorise cette opération à se poursuivre avant de retourner une exception TimeoutException.

cancellationToken
CancellationToken

CancellationToken que l’opération observe. Il peut être utilisé pour envoyer une notification indiquant que l’opération doit être annulée. Notez que l’annulation est un avis et que l’opération peut toujours être terminée même si elle est annulée.

Retours

Tâche représentant l’opération asynchrone.

S’applique à

CreateAsync(Action, TimeSpan, CancellationToken)

Crée l’objet FabricRuntime de façon asynchrone avec la fonction de rappel spécifiée qui sera exécutée si le runtime sous-jacent se termine ou se ferme pour une raison quelconque, timeoutet cancellationToken.

public static System.Threading.Tasks.Task<System.Fabric.FabricRuntime> CreateAsync (Action fabricExitCallback, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
static member CreateAsync : Action * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Fabric.FabricRuntime>
Public Shared Function CreateAsync (fabricExitCallback As Action, timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of FabricRuntime)

Paramètres

fabricExitCallback
Action

Action à exécuter lorsque le runtime se ferme ou se termine.

timeout
TimeSpan

La durée maximale pendant laquelle Service Fabric autorise cette opération à se poursuivre avant de retourner une exception TimeoutException.

cancellationToken
CancellationToken

CancellationToken que l’opération observe. Il peut être utilisé pour envoyer une notification indiquant que l’opération doit être annulée. Notez que l’annulation est un avis et que l’opération peut toujours être terminée même si elle est annulée.

Retours

Tâche représentant l’opération asynchrone.

S’applique à