Class Replicator.Subscribe<A extends ReplicatedData>

java.lang.Object
org.apache.pekko.cluster.ddata.typed.scaladsl.Replicator.Subscribe<A>
All Implemented Interfaces:
Serializable, Replicator.Command, scala.Equals, scala.Product
Enclosing class:
Replicator

public static final class Replicator.Subscribe<A extends ReplicatedData> extends Object implements Replicator.Command, scala.Product, Serializable
Register a subscriber that will be notified with a Changed message when the value of the given key is changed. Current value is also sent as a Changed message to a new subscriber.

Subscribers will be notified periodically with the configured notify-subscribers-interval, and it is also possible to send an explicit FlushChanges message to the Replicator to notify the subscribers immediately.

The subscriber will automatically be unregistered if it is terminated.

If the key is deleted the subscriber is notified with a Deleted message.

See Also: