You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Sources/DistributedActors/Cluster/Leadership.swift
+2-2
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ import NIO // Future
39
39
/// e.g. when a partition in the cluster occurs. This is usually beneficial to _liveness_
40
40
///
41
41
/// ### Leadership Change Cluster Event
42
-
/// If a new member is selected as leader, a ``Cluster.Event`` carrying ``Cluster.LeadershipChange`` will be emitted.
42
+
/// If a new member is selected as leader, a ``Cluster/Event`` carrying ``Cluster/LeadershipChange`` will be emitted.
43
43
/// Other actors may subscribe to `ClusterSystem.cluster.events` in order to receive and react to such changes,
44
44
/// e.g. if an actor should only perform its duties if it is residing on the current leader node.
45
45
publicprotocolLeaderElection{
@@ -315,7 +315,7 @@ extension Leadership {
315
315
316
316
extensionClusterSystemSettings{
317
317
publicenumLeadershipSelectionSettings{
318
-
/// No automatic leader selection, you can write your own logic and issue a `Cluster.LeadershipChange` `Cluster.Event` to the `system.cluster.events` event stream.
318
+
/// No automatic leader selection, you can write your own logic and issue a `Cluster.LeadershipChange` ``Cluster/Event`` to the `system.cluster.events` event stream.
319
319
case none
320
320
/// All nodes get ordered by their node addresses and the "lowest" is always selected as a leader.
0 commit comments