Class/Object

reactivemongo.api

MongoConnectionOptions

Related Docs: object MongoConnectionOptions | package api

Permalink

final class MongoConnectionOptions extends AnyRef

Options for MongoConnection (see more documentation).

Annotations
@SuppressWarnings()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoConnectionOptions
  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

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 MongoConnectionOptions to any2stringadd[MongoConnectionOptions] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MongoConnectionOptions, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to ArrowAssoc[MongoConnectionOptions] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def appName: Option[String]

    Permalink

    An optional application name

    An optional application name

    Annotations
    @inline()
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def authenticationDatabase: Option[String]

    Permalink

    The name of the database used for authentication

    The name of the database used for authentication

    Annotations
    @inline()
  9. def authenticationMechanism: AuthenticationMode

    Permalink

    Either ScramSha1Authentication or X509Authentication

    Annotations
    @inline()
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def connectTimeoutMS: Int

    Permalink

    The number of milliseconds to wait for a connection to be established before giving up.

    The number of milliseconds to wait for a connection to be established before giving up.

    Annotations
    @inline()
  12. def copy(connectTimeoutMS: Int = _connectTimeoutMS, authenticationDatabase: Option[String] = _authenticationDatabase, sslEnabled: Boolean = _sslEnabled, sslAllowsInvalidCert: Boolean = _sslAllowsInvalidCert, authenticationMechanism: AuthenticationMode = _authenticationMechanism, tcpNoDelay: Boolean = _tcpNoDelay, keepAlive: Boolean = _keepAlive, nbChannelsPerNode: Int = _nbChannelsPerNode, maxInFlightRequestsPerChannel: Option[Int] = _maxInFlightRequestsPerChannel, minIdleChannelsPerNode: Int = _minIdleChannelsPerNode, writeConcern: WriteConcern = _writeConcern, readPreference: ReadPreference = _readPreference, failoverStrategy: FailoverStrategy = _failoverStrategy, heartbeatFrequencyMS: Int = _heartbeatFrequencyMS, maxIdleTimeMS: Int = _maxIdleTimeMS, maxHistorySize: Int = _maxHistorySize, credentials: Map[String, Credential] = _credentials, keyStore: Option[KeyStore] = _keyStore, readConcern: ReadConcern = _readConcern, appName: Option[String] = _appName): MongoConnectionOptions

    Permalink
    Annotations
    @SuppressWarnings()
  13. def credentials: Map[String, Credential]

    Permalink

    The credentials per authentication database names

    The credentials per authentication database names

    Annotations
    @inline()
  14. def ensuring(cond: (MongoConnectionOptions) ⇒ Boolean, msg: ⇒ Any): MongoConnectionOptions

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to Ensuring[MongoConnectionOptions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (MongoConnectionOptions) ⇒ Boolean): MongoConnectionOptions

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to Ensuring[MongoConnectionOptions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): MongoConnectionOptions

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to Ensuring[MongoConnectionOptions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): MongoConnectionOptions

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to Ensuring[MongoConnectionOptions] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    MongoConnectionOptions → AnyRef → Any
  20. def failoverStrategy: FailoverStrategy

    Permalink

    The default failover strategy

    The default failover strategy

    Annotations
    @inline()
  21. def finalize(): Unit

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to StringFormat[MongoConnectionOptions] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Permalink
    Definition Classes
    MongoConnectionOptions → AnyRef → Any
  25. def heartbeatFrequencyMS: Int

    Permalink

    The interval in milliseconds used by monitor to refresh the node set (default: 10000 aka 10s)

    The interval in milliseconds used by monitor to refresh the node set (default: 10000 aka 10s)

    Annotations
    @inline()
  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. def keepAlive: Boolean

    Permalink

    TCP KeepAlive flag (ReactiveMongo-specific option).

    TCP KeepAlive flag (ReactiveMongo-specific option). The default value is false (see SO_KEEPALIVE).

    Annotations
    @inline()
  28. def keyStore: Option[KeyStore]

    Permalink

    An optional key store

    An optional key store

    Annotations
    @inline()
  29. def maxHistorySize: Int

    Permalink

    The maximum size of the pool history (default: 25)

    The maximum size of the pool history (default: 25)

    Annotations
    @inline()
  30. def maxIdleTimeMS: Int

    Permalink

    The maximum number of milliseconds that a channel can remain idle in the connection pool before being removed and closed (default: 0 to disable, as implemented using Netty IdleStateHandler); If not 0, must be greater or equal to heartbeatFrequencyMS.

    The maximum number of milliseconds that a channel can remain idle in the connection pool before being removed and closed (default: 0 to disable, as implemented using Netty IdleStateHandler); If not 0, must be greater or equal to heartbeatFrequencyMS.

    Annotations
    @inline()
  31. def maxInFlightRequestsPerChannel: Option[Int]

    Permalink

    The maximum number of requests processed per channel

    The maximum number of requests processed per channel

    Annotations
    @inline()
  32. def maxNonQueryableHeartbeats: Int

    Permalink

    EXPERIMENTAL:

  33. def minIdleChannelsPerNode: Int

    Permalink

    The minimum number of idle channels per node

    The minimum number of idle channels per node

    Annotations
    @inline()
  34. def nbChannelsPerNode: Int

    Permalink

    The number of channels (connections) per node (ReactiveMongo-specific option)

    The number of channels (connections) per node (ReactiveMongo-specific option)

    Annotations
    @inline()
  35. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  38. def readConcern: ReadConcern

    Permalink

    The default read concern

    The default read concern

    Annotations
    @inline()
  39. def readPreference: ReadPreference

    Permalink

    The default read preference

    The default read preference

    Annotations
    @inline()
  40. def sslAllowsInvalidCert: Boolean

    Permalink

    If sslEnabled is true, this one indicates whether to accept invalid certificates (e.g.

    If sslEnabled is true, this one indicates whether to accept invalid certificates (e.g. self-signed).

    Annotations
    @inline()
  41. def sslEnabled: Boolean

    Permalink

    Enable SSL connection (required to be accepted on server-side)

    Enable SSL connection (required to be accepted on server-side)

    Annotations
    @inline()
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  43. def tcpNoDelay: Boolean

    Permalink

    TCP NoDelay flag (ReactiveMongo-specific option).

    TCP NoDelay flag (ReactiveMongo-specific option). The default value is false (see TCP_NODELAY).

    Annotations
    @inline()
  44. def toString(): String

    Permalink
    Definition Classes
    MongoConnectionOptions → AnyRef → Any
  45. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def writeConcern: WriteConcern

    Permalink

    The default write concern

    The default write concern

    Annotations
    @inline()
  49. def [B](y: B): (MongoConnectionOptions, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from MongoConnectionOptions to ArrowAssoc[MongoConnectionOptions] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped