Class ClusterClientDiscovery
Implements
Inherited Members
Namespace: Akka.Cluster.Tools.Client
Assembly: Akka.Cluster.Tools.dll
Syntax
public class ClusterClientDiscovery : UntypedActor, IInternalActor, IWithUnboundedStash, IWithUnrestrictedStash, IActorStash, IRequiresMessageQueue<IUnboundedDequeBasedMessageQueueSemantics>, IWithTimers
Constructors
| Edit this page View SourceClusterClientDiscovery(ClusterClientSettings)
Declaration
public ClusterClientDiscovery(ClusterClientSettings settings)
Parameters
Type | Name | Description |
---|---|---|
ClusterClientSettings | settings |
Properties
| Edit this page View SourceStash
Gets or sets the stash. This will be automatically populated by the framework AFTER the constructor has been run. Implement this as an auto property.
Declaration
public IStash Stash { get; set; }
Property Value
Type | Description |
---|---|
IStash | The stash. |
Timers
Gets or sets the TimerScheduler. This will be automatically populated by the framework in base constructor. Implement this as an auto property.
Declaration
public ITimerScheduler Timers { get; set; }
Property Value
Type | Description |
---|---|
ITimerScheduler |
Methods
| Edit this page View SourceOnReceive(object)
To be implemented by concrete UntypedActor, this defines the behavior of the UntypedActor. This method is called for every message received by the actor.
Declaration
protected override void OnReceive(object message)
Parameters
Type | Name | Description |
---|---|---|
object | message | The message. |
Overrides
| Edit this page View SourcePostStop()
User overridable callback.
Is called asynchronously after 'actor.stop()' is invoked. Empty default implementation.Declaration
protected override void PostStop()
Overrides
| Edit this page View SourcePreStart()
User overridable callback.
Is called when an Actor is started. Actors are automatically started asynchronously when created. Empty default implementation.Declaration
protected override void PreStart()