IGrainDirectory.UnregisterSilos Method

Definition

Overloads

UnregisterSilos(List<SiloAddress>)

Unregisters all grain directory entries which point to any of the specified silos.

UnregisterSilos(List<String>)

Unregister from the directory all entries that point to one of the silo in argument. Can be a NO-OP depending on the implementation.

UnregisterSilos(List<SiloAddress>)

Unregisters all grain directory entries which point to any of the specified silos.

public System.Threading.Tasks.Task UnregisterSilos (System.Collections.Generic.List<Orleans.Runtime.SiloAddress> siloAddresses);
abstract member UnregisterSilos : System.Collections.Generic.List<Orleans.Runtime.SiloAddress> -> System.Threading.Tasks.Task
Public Function UnregisterSilos (siloAddresses As List(Of SiloAddress)) As Task

Parameters

siloAddresses
List<SiloAddress>

The silos to be removed from the directory

Returns

A Task representing the operation.

Remarks

Can be a No-Op depending on the implementation.

Applies to

UnregisterSilos(List<String>)

Source:
IGrainDirectory.cs

Unregister from the directory all entries that point to one of the silo in argument. Can be a NO-OP depending on the implementation.

public System.Threading.Tasks.Task UnregisterSilos (System.Collections.Generic.List<string> siloAddresses);
abstract member UnregisterSilos : System.Collections.Generic.List<string> -> System.Threading.Tasks.Task
Public Function UnregisterSilos (siloAddresses As List(Of String)) As Task

Parameters

siloAddresses
List<String>

The silos to be removed from the directory

Returns

Applies to