class MongoDriver extends Driver

Annotations
@deprecated
Deprecated

(Since version 0.19.4) Use reactivemongo.api.AsyncDriver

Linear Supertypes
Driver, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoDriver
  2. Driver
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MongoDriver(config: Option[Config] = None, classLoader: Option[ClassLoader] = None)

    config

    a custom configuration (otherwise the default options are used)

    classLoader

    a classloader used to load the actor system

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 MongoDriver toany2stringadd[MongoDriver] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MongoDriver, B)
    Implicit
    This member is added by an implicit conversion from MongoDriver toArrowAssoc[MongoDriver] 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. final def askClose(timeout: FiniteDuration)(implicit ec: ExecutionContext): Future[Unit]

    Closes this driver (and all its connections and resources).

    Closes this driver (and all its connections and resources). Will wait until the timeout for proper closing of connections before forcing hard shutdown.

    Attributes
    protected
    Definition Classes
    Driver
  8. final def askConnection(nodes: Seq[String], options: MongoConnectionOptions, name: Option[String]): Future[MongoConnection]

    Creates a new MongoConnection.

    Creates a new MongoConnection.

    nodes

    The list of node names (e.g. node1.foo.com:27017); Port is optional (27017 is used by default)

    options

    the options for the new connection pool

    name

    the name for the connection pool

    Attributes
    protected
    Definition Classes
    Driver
  9. val classLoader: Option[ClassLoader]

    The classloader used to load the actor system

    The classloader used to load the actor system

    Attributes
    protected
    Definition Classes
    MongoDriver → Driver
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  11. def close(timeout: FiniteDuration = FiniteDuration(2, SECONDS)): Unit

    Closes this driver (and all its connections and resources).

    Closes this driver (and all its connections and resources). Awaits the termination until the timeout is expired.

  12. val config: Option[Config]

    The custom configuration (otherwise the default options are used)

    The custom configuration (otherwise the default options are used)

    Attributes
    protected
    Definition Classes
    MongoDriver → Driver
  13. def connection(parsedURI: ParsedURI, strictUri: Boolean): Try[MongoConnection]

    Creates a new MongoConnection from URI.

    Creates a new MongoConnection from URI.

    See how to connect to the database

    parsedURI

    the URI parsed by reactivemongo.api.MongoConnection.parseURI

    strictUri

    if true the parsed URI must be strict, without ignored/unsupported options

  14. def connection(parsedURI: ParsedURI, name: Option[String], strictUri: Boolean): Try[MongoConnection]

    Creates a new MongoConnection from URI.

    Creates a new MongoConnection from URI.

    See how to connect to the database

    parsedURI

    The URI parsed by reactivemongo.api.MongoConnection.parseURI

    name

    the name for the connection pool

    strictUri

    if true the parsed URI must be strict, without ignored/unsupported options

  15. def connection(parsedURI: ParsedURI, name: Option[String]): MongoConnection

    Creates a new MongoConnection from URI.

    Creates a new MongoConnection from URI.

    See how to connect to the database

    parsedURI

    the URI parsed by reactivemongo.api.MongoConnection.parseURI

    name

    the name for the connection pool

  16. def connection(uri: String, name: Option[String], strictUri: Boolean): Try[MongoConnection]

    Creates a new MongoConnection from URI.

    Creates a new MongoConnection from URI.

    See how to connect to the database

    uri

    the URI to be parsed by reactivemongo.api.MongoConnection.parseURI

    name

    the name for the connection pool

    strictUri

    if true the parsed URI must be strict, without ignored/unsupported options

  17. def connection(uriStrict: String): Try[MongoConnection]

    Creates a new MongoConnection from URI.

    Creates a new MongoConnection from URI.

    See how to connect to the database

    uriStrict

    the strict URI, that will be parsed by reactivemongo.api.MongoConnection.parseURI

  18. def connection(nodes: Seq[String], options: MongoConnectionOptions, name: String): MongoConnection

    Creates a new MongoConnection.

    Creates a new MongoConnection.

    See how to connect to the database

    nodes

    The list of node names (e.g. node1.foo.com:27017); Port is optional (27017 is used by default)

    options

    the options for the new connection pool

    name

    the name for the connection pool

  19. def connection(nodes: Seq[String], options: MongoConnectionOptions): MongoConnection

    Creates a new MongoConnection.

    Creates a new MongoConnection.

    See how to connect to the database

    nodes

    The list of node names (e.g. node1.foo.com:27017); Port is optional (27017 is used by default)

    options

    the options for the new connection pool

  20. def connection(nodes: Seq[String]): MongoConnection

    Creates a new MongoConnection.

    Creates a new MongoConnection.

    See how to connect to the database

    nodes

    The list of node names (e.g. node1.foo.com:27017); Port is optional (27017 is used by default)

  21. final val connectionMonitors: Map[ActorRef, MongoConnection]
    Attributes
    protected
    Definition Classes
    Driver
  22. def ensuring(cond: (MongoDriver) => Boolean, msg: => Any): MongoDriver
    Implicit
    This member is added by an implicit conversion from MongoDriver toEnsuring[MongoDriver] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: (MongoDriver) => Boolean): MongoDriver
    Implicit
    This member is added by an implicit conversion from MongoDriver toEnsuring[MongoDriver] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: Boolean, msg: => Any): MongoDriver
    Implicit
    This member is added by an implicit conversion from MongoDriver toEnsuring[MongoDriver] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. def ensuring(cond: Boolean): MongoDriver
    Implicit
    This member is added by an implicit conversion from MongoDriver toEnsuring[MongoDriver] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  28. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MongoDriver toStringFormat[MongoDriver] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. final val supervisorName: String
    Attributes
    protected
    Definition Classes
    Driver
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def connection(parsedURI: ParsedURI): MongoConnection

    Creates a new MongoConnection from URI.

    Creates a new MongoConnection from URI.

    See how to connect to the database

    parsedURI

    the URI parsed by reactivemongo.api.MongoConnection.parseURI

    Annotations
    @deprecated
    Deprecated

    (Since version 0.17.0) Use a safe connection as Try

  2. def connection(nodes: Seq[String], options: MongoConnectionOptions = MongoConnectionOptions.default, authentications: Seq[Authenticate] = Seq.empty, name: Option[String] = None): MongoConnection

    Creates a new MongoConnection.

    Creates a new MongoConnection.

    See how to connect to the database

    nodes

    The list of node names (e.g. node1.foo.com:27017); Port is optional (27017 is used by default)

    options

    the options for the new connection pool

    authentications

    the list of authentication instructions

    name

    the name for the connection pool

    Annotations
    @deprecated
    Deprecated

    (Since version 0.14.0) Use connection without authentications (but possibly without options.credentials)

  3. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  4. val system: ActorSystem
    Definition Classes
    Driver
    Annotations
    @deprecated
    Deprecated

    (Since version 0.19.8) Internal: will be made private

  5. def [B](y: B): (MongoDriver, B)
    Implicit
    This member is added by an implicit conversion from MongoDriver toArrowAssoc[MongoDriver] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Driver

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromMongoDriver to any2stringadd[MongoDriver]

Inherited by implicit conversion StringFormat fromMongoDriver to StringFormat[MongoDriver]

Inherited by implicit conversion Ensuring fromMongoDriver to Ensuring[MongoDriver]

Inherited by implicit conversion ArrowAssoc fromMongoDriver to ArrowAssoc[MongoDriver]

Ungrouped