Packages

case class Settings(address: InetSocketAddress = "127.0.0.1" :: 1113, connectionTimeout: FiniteDuration = 1.second, maxReconnections: Int = 100, reconnectionDelayMin: FiniteDuration = 250.millis, reconnectionDelayMax: FiniteDuration = 10.seconds, defaultCredentials: Option[UserCredentials] = Some(UserCredentials.DefaultAdmin), heartbeatInterval: FiniteDuration = 500.millis, heartbeatTimeout: FiniteDuration = 5.seconds, operationMaxRetries: Int = 10, operationTimeout: FiniteDuration = 30.seconds, resolveLinkTos: Boolean = false, requireMaster: Boolean = true, readBatchSize: Int = 500, bufferSize: Int = 100000, bufferOverflowStrategy: OverflowStrategy = OverflowStrategy.Fail, cluster: Option[ClusterSettings] = None, http: HttpSettings = HttpSettings(), serializationParallelism: Int = 8, serializationOrdered: Boolean = true, connectionName: Option[String] = Some("jvm-client")) extends Product with Serializable

address

IP & port of Event Store

connectionTimeout

The desired connection timeout

maxReconnections

Maximum number of reconnections before backing off, -1 to reconnect forever

reconnectionDelayMin

Delay before first reconnection

reconnectionDelayMax

Maximum delay on reconnections

defaultCredentials

The UserCredentials to use for operations where other UserCredentials are not explicitly supplied.

heartbeatInterval

The interval at which to send heartbeat messages.

heartbeatTimeout

The interval after which an unacknowledged heartbeat will cause the connection to be considered faulted and disconnect.

operationMaxRetries

The maximum number of operation retries

operationTimeout

The amount of time before an operation is considered to have timed out

resolveLinkTos

Whether to resolve LinkTo events automatically

requireMaster

Whether or not to require Event Store to refuse serving read or write request if it is not master

readBatchSize

Number of events to be retrieved by client as single message

bufferSize

The size of the buffer in element count

bufferOverflowStrategy

Strategy that is used when elements cannot fit inside the buffer

http

Url to access eventstore though the Http API

serializationParallelism

The number of serialization/deserialization functions to be run in parallel

serializationOrdered

Serialization done asynchronously and these futures may complete in any order, but results will be used with preserved order if set to true

connectionName

Client identifier used to show a friendly name of client in Event Store.

Annotations
@SerialVersionUID()
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Settings
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. 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 Settings(address: InetSocketAddress = "127.0.0.1" :: 1113, connectionTimeout: FiniteDuration = 1.second, maxReconnections: Int = 100, reconnectionDelayMin: FiniteDuration = 250.millis, reconnectionDelayMax: FiniteDuration = 10.seconds, defaultCredentials: Option[UserCredentials] = Some(UserCredentials.DefaultAdmin), heartbeatInterval: FiniteDuration = 500.millis, heartbeatTimeout: FiniteDuration = 5.seconds, operationMaxRetries: Int = 10, operationTimeout: FiniteDuration = 30.seconds, resolveLinkTos: Boolean = false, requireMaster: Boolean = true, readBatchSize: Int = 500, bufferSize: Int = 100000, bufferOverflowStrategy: OverflowStrategy = OverflowStrategy.Fail, cluster: Option[ClusterSettings] = None, http: HttpSettings = HttpSettings(), serializationParallelism: Int = 8, serializationOrdered: Boolean = true, connectionName: Option[String] = Some("jvm-client"))

    address

    IP & port of Event Store

    connectionTimeout

    The desired connection timeout

    maxReconnections

    Maximum number of reconnections before backing off, -1 to reconnect forever

    reconnectionDelayMin

    Delay before first reconnection

    reconnectionDelayMax

    Maximum delay on reconnections

    defaultCredentials

    The UserCredentials to use for operations where other UserCredentials are not explicitly supplied.

    heartbeatInterval

    The interval at which to send heartbeat messages.

    heartbeatTimeout

    The interval after which an unacknowledged heartbeat will cause the connection to be considered faulted and disconnect.

    operationMaxRetries

    The maximum number of operation retries

    operationTimeout

    The amount of time before an operation is considered to have timed out

    resolveLinkTos

    Whether to resolve LinkTo events automatically

    requireMaster

    Whether or not to require Event Store to refuse serving read or write request if it is not master

    readBatchSize

    Number of events to be retrieved by client as single message

    bufferSize

    The size of the buffer in element count

    bufferOverflowStrategy

    Strategy that is used when elements cannot fit inside the buffer

    http

    Url to access eventstore though the Http API

    serializationParallelism

    The number of serialization/deserialization functions to be run in parallel

    serializationOrdered

    Serialization done asynchronously and these futures may complete in any order, but results will be used with preserved order if set to true

    connectionName

    Client identifier used to show a friendly name of client in Event Store.

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 Settings to any2stringadd[Settings] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Settings, B)
    Implicit
    This member is added by an implicit conversion from Settings to ArrowAssoc[Settings] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val address: InetSocketAddress
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val bufferOverflowStrategy: OverflowStrategy
  9. val bufferSize: Int
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. val cluster: Option[ClusterSettings]
  12. val connectionName: Option[String]
  13. val connectionTimeout: FiniteDuration
  14. val defaultCredentials: Option[UserCredentials]
  15. def ensuring(cond: (Settings) ⇒ Boolean, msg: ⇒ Any): Settings
    Implicit
    This member is added by an implicit conversion from Settings to Ensuring[Settings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (Settings) ⇒ Boolean): Settings
    Implicit
    This member is added by an implicit conversion from Settings to Ensuring[Settings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): Settings
    Implicit
    This member is added by an implicit conversion from Settings to Ensuring[Settings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): Settings
    Implicit
    This member is added by an implicit conversion from Settings to Ensuring[Settings] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Settings to StringFormat[Settings] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. val heartbeatInterval: FiniteDuration
  24. val heartbeatTimeout: FiniteDuration
  25. val http: HttpSettings
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. val maxReconnections: Int
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. val operationMaxRetries: Int
  32. val operationTimeout: FiniteDuration
  33. val readBatchSize: Int
  34. val reconnectionDelayMax: FiniteDuration
  35. val reconnectionDelayMin: FiniteDuration
  36. val requireMaster: Boolean
  37. val resolveLinkTos: Boolean
  38. val serializationOrdered: Boolean
  39. val serializationParallelism: Int
  40. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  44. def [B](y: B): (Settings, B)
    Implicit
    This member is added by an implicit conversion from Settings to ArrowAssoc[Settings] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped