| ClusterRegisterOnMemberUp Method |
Registers the supplied callback to run once when the current cluster member is
Up.
Typically used together with configuration option 'akka.cluster.min-nr-of-members' to defer some action,
such as starting actors, until the cluster has reached a certain size.
Namespace:
Akka.Cluster
Assembly:
Akka.Cluster (in Akka.Cluster.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public void RegisterOnMemberUp(
Action callback
)
member RegisterOnMemberUp :
callback : Action -> unit
Parameters
- callback
- Type: SystemAction
The callback that is run whenever the current member achieves a status of Up
See Also