Class/Object

eventstore

Settings

Related Docs: object Settings | package eventstore

Permalink

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"))

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    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)

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef → Any
  6. val address: InetSocketAddress

    Permalink

    IP & port of Event Store

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. val bufferOverflowStrategy: OverflowStrategy

    Permalink

    Strategy that is used when elements cannot fit inside the buffer

  9. val bufferSize: Int

    Permalink

    The size of the buffer in element count

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. val cluster: Option[ClusterSettings]

    Permalink
  12. val connectionName: Option[String]

    Permalink

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

  13. val connectionTimeout: FiniteDuration

    Permalink

    The desired connection timeout

  14. val defaultCredentials: Option[UserCredentials]

    Permalink

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

  15. def ensuring(cond: (Settings) ⇒ Boolean, msg: ⇒ Any): Settings

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    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[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. val heartbeatInterval: FiniteDuration

    Permalink

    The interval at which to send heartbeat messages.

  24. val heartbeatTimeout: FiniteDuration

    Permalink

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

  25. val http: HttpSettings

    Permalink

    Url to access eventstore though the Http API

  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. val maxReconnections: Int

    Permalink

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

  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. val operationMaxRetries: Int

    Permalink

    The maximum number of operation retries

  32. val operationTimeout: FiniteDuration

    Permalink

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

  33. val readBatchSize: Int

    Permalink

    Number of events to be retrieved by client as single message

  34. val reconnectionDelayMax: FiniteDuration

    Permalink

    Maximum delay on reconnections

  35. val reconnectionDelayMin: FiniteDuration

    Permalink

    Delay before first reconnection

  36. val requireMaster: Boolean

    Permalink

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

  37. val resolveLinkTos: Boolean

    Permalink

    Whether to resolve LinkTo events automatically

  38. val serializationOrdered: Boolean

    Permalink

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

  39. val serializationParallelism: Int

    Permalink

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

  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (Settings, B)

    Permalink
    Implicit information
    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