final class ReplicatorSettings extends AnyRef

Source
Replicator.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReplicatorSettings
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReplicatorSettings(role: Option[String], gossipInterval: FiniteDuration, notifySubscribersInterval: FiniteDuration, maxDeltaElements: Int, dispatcher: String, pruningInterval: FiniteDuration, maxPruningDissemination: FiniteDuration)
  2. new ReplicatorSettings(role: Option[String], gossipInterval: FiniteDuration, notifySubscribersInterval: FiniteDuration, maxDeltaElements: Int, dispatcher: String, pruningInterval: FiniteDuration, maxPruningDissemination: FiniteDuration, durableStoreProps: Either[(String, Config), Props], durableKeys: Set[String])

    role

    Replicas are running on members tagged with this role. All members are used if undefined.

    gossipInterval

    How often the Replicator should send out gossip information.

    notifySubscribersInterval

    How often the subscribers will be notified of changes, if any.

    maxDeltaElements

    Maximum number of entries to transfer in one gossip message when synchronizing the replicas. Next chunk will be transferred in next round of gossip.

    dispatcher

    Id of the dispatcher to use for Replicator actors. If not specified ("") the default dispatcher is used.

    pruningInterval

    How often the Replicator checks for pruning of data associated with removed cluster nodes.

    maxPruningDissemination

    How long time it takes (worst case) to spread the data to all other replica nodes. This is used when initiating and completing the pruning process of data associated with removed cluster nodes. The time measurement is stopped when any replica is unreachable, so it should be configured to worst case in a healthy cluster.

    durableStoreProps

    Props for the durable store actor, the Left alternative is a tuple of fully qualified actor class name and the config constructor parameter of that class, the Right alternative is the Props of the actor.

    durableKeys

    Keys that are durable. Prefix matching is supported by using * at the end of a key. All entries can be made durable by including "*" in the Set.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to any2stringadd[ReplicatorSettings] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ReplicatorSettings, B)
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to ArrowAssoc[ReplicatorSettings] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val dispatcher: String
  9. val durableKeys: Set[String]
  10. val durableStoreProps: Either[(String, Config), Props]
  11. def ensuring(cond: (ReplicatorSettings) ⇒ Boolean, msg: ⇒ Any): ReplicatorSettings
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to Ensuring[ReplicatorSettings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ReplicatorSettings) ⇒ Boolean): ReplicatorSettings
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to Ensuring[ReplicatorSettings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): ReplicatorSettings
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to Ensuring[ReplicatorSettings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ReplicatorSettings
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to Ensuring[ReplicatorSettings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to StringFormat[ReplicatorSettings] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. val gossipInterval: FiniteDuration
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. val maxDeltaElements: Int
  24. val maxPruningDissemination: FiniteDuration
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  28. val notifySubscribersInterval: FiniteDuration
  29. val pruningInterval: FiniteDuration
  30. val role: Option[String]
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def withDispatcher(dispatcher: String): ReplicatorSettings
  37. def withDurableKeys(durableKeys: Set[String]): ReplicatorSettings

    Java API

  38. def withDurableKeys(durableKeys: Set[String]): ReplicatorSettings

    Scala API

  39. def withDurableStoreProps(durableStoreProps: Props): ReplicatorSettings
  40. def withGossipInterval(gossipInterval: FiniteDuration): ReplicatorSettings
  41. def withMaxDeltaElements(maxDeltaElements: Int): ReplicatorSettings
  42. def withNotifySubscribersInterval(notifySubscribersInterval: FiniteDuration): ReplicatorSettings
  43. def withPruning(pruningInterval: FiniteDuration, maxPruningDissemination: FiniteDuration): ReplicatorSettings
  44. def withRole(role: Option[String]): ReplicatorSettings
  45. def withRole(role: String): ReplicatorSettings
  46. def [B](y: B): (ReplicatorSettings, B)
    Implicit
    This member is added by an implicit conversion from ReplicatorSettings to ArrowAssoc[ReplicatorSettings] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ReplicatorSettings to any2stringadd[ReplicatorSettings]

Inherited by implicit conversion StringFormat from ReplicatorSettings to StringFormat[ReplicatorSettings]

Inherited by implicit conversion Ensuring from ReplicatorSettings to Ensuring[ReplicatorSettings]

Inherited by implicit conversion ArrowAssoc from ReplicatorSettings to ArrowAssoc[ReplicatorSettings]

Ungrouped