C# Класс Akka.Routing.ScatterGatherFirstCompletedGroup

Наследование: Akka.Routing.Group
Показать файл Открыть проект

Открытые методы

Метод Описание
CreateRouter ( ActorSystem system ) : Router

Creates a router that is responsible for routing messages to routees within the provided system.

ScatterGatherFirstCompletedGroup ( Config config ) : System

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.

ScatterGatherFirstCompletedGroup ( IEnumerable routees, System.TimeSpan within ) : System

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.

ScatterGatherFirstCompletedGroup ( IEnumerable paths, System.TimeSpan within ) : System

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.

ScatterGatherFirstCompletedGroup ( System.TimeSpan within ) : System

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.

ToSurrogate ( ActorSystem system ) : ISurrogate

Creates a surrogate representation of the current ScatterGatherFirstCompletedGroup.

WithDispatcher ( string dispatcher ) : Akka.Routing.Group

Creates a new ScatterGatherFirstCompletedGroup router with a given dispatcher id. This method is immutable and returns a new instance of the router.

Описание методов

CreateRouter() публичный Метод

Creates a router that is responsible for routing messages to routees within the provided system.
public CreateRouter ( ActorSystem system ) : Router
system ActorSystem The actor system that owns this router.
Результат Router

ScatterGatherFirstCompletedGroup() публичный Метод

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.
public ScatterGatherFirstCompletedGroup ( Config config ) : System
config Akka.Configuration.Config /// The configuration to use to lookup paths used by the group router. /// /// /// If 'routees.path' is defined in the provided configuration then those paths will be used by the router. /// If 'within' is defined in the provided configuration then that will be used as the interval. /// ///
Результат System

ScatterGatherFirstCompletedGroup() публичный Метод

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.
public ScatterGatherFirstCompletedGroup ( IEnumerable routees, System.TimeSpan within ) : System
routees IEnumerable An enumeration of routees used by the group router.
within System.TimeSpan The amount of time to wait for a response.
Результат System

ScatterGatherFirstCompletedGroup() публичный Метод

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.
public ScatterGatherFirstCompletedGroup ( IEnumerable paths, System.TimeSpan within ) : System
paths IEnumerable An enumeration of actor paths used by the group router.
within System.TimeSpan The amount of time to wait for a response.
Результат System

ScatterGatherFirstCompletedGroup() публичный Метод

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.
public ScatterGatherFirstCompletedGroup ( System.TimeSpan within ) : System
within System.TimeSpan The amount of time to wait for a response.
Результат System

ToSurrogate() публичный Метод

Creates a surrogate representation of the current ScatterGatherFirstCompletedGroup.
public ToSurrogate ( ActorSystem system ) : ISurrogate
system ActorSystem The actor system that owns this router.
Результат ISurrogate

WithDispatcher() публичный Метод

Creates a new ScatterGatherFirstCompletedGroup router with a given dispatcher id. This method is immutable and returns a new instance of the router.
public WithDispatcher ( string dispatcher ) : Akka.Routing.Group
dispatcher string The dispatcher id used to configure the new router.
Результат Akka.Routing.Group