Class ClusterClientSettings

  • All Implemented Interfaces:
    NoSerializationVerificationNeeded

    public final class ClusterClientSettings
    extends java.lang.Object
    implements NoSerializationVerificationNeeded
    Deprecated.
    Use Akka gRPC instead, see https://doc.akka.io/docs/akka/2.6/cluster-client.html#migration-to-akka-grpc. Since 2.6.0.
    param: initialContacts Actor paths of the ClusterReceptionist actors on the servers (cluster nodes) that the client will try to contact initially. It is mandatory to specify at least one initial contact. The path of the default receptionist is "akka://system@hostname:port/system/receptionist" param: establishingGetContactsInterval Interval at which the client retries to establish contact with one of ClusterReceptionist on the servers (cluster nodes) param: refreshContactsInterval Interval at which the client will ask the ClusterReceptionist for new contact points to be used for next reconnect. param: heartbeatInterval How often failure detection heartbeat messages for detection of failed connections should be sent. param: acceptableHeartbeatPause Number of potentially lost/delayed heartbeats that will be accepted before considering it to be an anomaly. The ClusterClient is using the DeadlineFailureDetector, which will trigger if there are no heartbeats within the duration heartbeatInterval + acceptableHeartbeatPause. param: bufferSize If connection to the receptionist is not established the client will buffer this number of messages and deliver them the connection is established. When the buffer is full old messages will be dropped when new messages are sent via the client. Use 0 to disable buffering, i.e. messages will be dropped immediately if the location of the receptionist is unavailable. param: reconnectTimeout If the connection to the receptionist is lost and cannot be re-established within this duration the cluster client will be stopped. This makes it possible to watch it from another actor and possibly acquire a new list of initialContacts from some external service registry
    • Constructor Detail

      • ClusterClientSettings

        public ClusterClientSettings​(scala.collection.immutable.Set<ActorPath> initialContacts,
                                     scala.concurrent.duration.FiniteDuration establishingGetContactsInterval,
                                     scala.concurrent.duration.FiniteDuration refreshContactsInterval,
                                     scala.concurrent.duration.FiniteDuration heartbeatInterval,
                                     scala.concurrent.duration.FiniteDuration acceptableHeartbeatPause,
                                     int bufferSize,
                                     scala.Option<scala.concurrent.duration.FiniteDuration> reconnectTimeout)
        Deprecated.
      • ClusterClientSettings

        public ClusterClientSettings​(scala.collection.immutable.Set<ActorPath> initialContacts,
                                     scala.concurrent.duration.FiniteDuration establishingGetContactsInterval,
                                     scala.concurrent.duration.FiniteDuration refreshContactsInterval,
                                     scala.concurrent.duration.FiniteDuration heartbeatInterval,
                                     scala.concurrent.duration.FiniteDuration acceptableHeartbeatPause,
                                     int bufferSize)
        Deprecated.
        For binary/source compatibility
    • Method Detail

      • apply

        public static ClusterClientSettings apply​(com.typesafe.config.Config config)
        Deprecated.
        Create settings from a configuration with the same layout as the default configuration akka.cluster.client.
      • create

        public static ClusterClientSettings create​(ActorSystem system)
        Deprecated.
        Java API: Create settings from the default configuration akka.cluster.client.
      • create

        public static ClusterClientSettings create​(com.typesafe.config.Config config)
        Deprecated.
        Java API: Create settings from a configuration with the same layout as the default configuration akka.cluster.client.
      • initialContacts

        public scala.collection.immutable.Set<ActorPath> initialContacts()
        Deprecated.
      • establishingGetContactsInterval

        public scala.concurrent.duration.FiniteDuration establishingGetContactsInterval()
        Deprecated.
      • refreshContactsInterval

        public scala.concurrent.duration.FiniteDuration refreshContactsInterval()
        Deprecated.
      • heartbeatInterval

        public scala.concurrent.duration.FiniteDuration heartbeatInterval()
        Deprecated.
      • acceptableHeartbeatPause

        public scala.concurrent.duration.FiniteDuration acceptableHeartbeatPause()
        Deprecated.
      • bufferSize

        public int bufferSize()
        Deprecated.
      • reconnectTimeout

        public scala.Option<scala.concurrent.duration.FiniteDuration> reconnectTimeout()
        Deprecated.
      • withInitialContacts

        public ClusterClientSettings withInitialContacts​(scala.collection.immutable.Set<ActorPath> initialContacts)
        Deprecated.
        Scala API
      • withEstablishingGetContactsInterval

        public ClusterClientSettings withEstablishingGetContactsInterval​(scala.concurrent.duration.FiniteDuration establishingGetContactsInterval)
        Deprecated.
      • withRefreshContactsInterval

        public ClusterClientSettings withRefreshContactsInterval​(scala.concurrent.duration.FiniteDuration refreshContactsInterval)
        Deprecated.
      • withHeartbeat

        public ClusterClientSettings withHeartbeat​(scala.concurrent.duration.FiniteDuration heartbeatInterval,
                                                   scala.concurrent.duration.FiniteDuration acceptableHeartbeatPause)
        Deprecated.
      • withReconnectTimeout

        public ClusterClientSettings withReconnectTimeout​(scala.Option<scala.concurrent.duration.FiniteDuration> reconnectTimeout)
        Deprecated.