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

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

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

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

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

RandomGroup ( ) : System.Collections.Generic

Initializes a new instance of the RandomGroup class.

RandomGroup ( Config config ) : System.Collections.Generic

Initializes a new instance of the RandomGroup class.

RandomGroup ( IEnumerable paths ) : System.Collections.Generic

Initializes a new instance of the RandomGroup class.

ToSurrogate ( ActorSystem system ) : ISurrogate

Creates a surrogate representation of the current RandomGroup.

WithDispatcher ( string dispatcher ) : Akka.Routing.Group

Creates a new RandomGroup 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

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

Initializes a new instance of the RandomGroup class.
public RandomGroup ( ) : System.Collections.Generic
Результат System.Collections.Generic

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

Initializes a new instance of the RandomGroup class.
public RandomGroup ( Config config ) : System.Collections.Generic
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. /// ///
Результат System.Collections.Generic

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

Initializes a new instance of the RandomGroup class.
public RandomGroup ( IEnumerable paths ) : System.Collections.Generic
paths IEnumerable An enumeration of paths used by the group router.
Результат System.Collections.Generic

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

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

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

Creates a new RandomGroup 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