Package

reactivemongo.core

actors

Permalink

package actors

Visibility
  1. Public
  2. All

Type Members

  1. case class AuthRequest(authenticate: Authenticate, promise: Promise[SuccessfulAuthentication] = Promise()) extends Product with Serializable

    Permalink
  2. case class CheckedWriteRequestExpectingResponse(checkedWriteRequest: CheckedWriteRequest) extends ExpectingResponse with Product with Serializable

    Permalink

    A checked write request expecting a response.

    A checked write request expecting a response.

    checkedWriteRequest

    The request maker.

  3. sealed trait ExpectingResponse extends AnyRef

    Permalink

    A message expecting a response from database.

    A message expecting a response from database. It holds a promise that will be completed by the MongoDBSystem actor. The future can be used to get the error or the successful response.

  4. case class PrimaryAvailable(metadata: ProtocolMetadata) extends Product with Serializable

    Permalink

    Message sent when the primary has been discovered.

  5. case class RequestMakerExpectingResponse(requestMaker: RequestMaker, isMongo26WriteOp: Boolean) extends ExpectingResponse with Product with Serializable

    Permalink

    A request expecting a response.

    A request expecting a response.

    requestMaker

    the request maker

    isMongo26WriteOp

    true if the operation is a MongoDB 2.6 write one

  6. case class SetAvailable(metadata: ProtocolMetadata) extends Product with Serializable

    Permalink
  7. final class LegacyDBSystem extends MongoDBSystem with MongoCrAuthentication

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.14) Internal class: will be made private

  8. trait MongoDBSystem extends Actor

    Permalink

    Main actor that processes the requests.

    Main actor that processes the requests.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.14) Internal class: will be made private

  9. final class StandardDBSystem extends MongoDBSystem with MongoScramSha1Authentication

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.14) Internal class: will be made private

Value Members

  1. object Close extends Product with Serializable

    Permalink

    Message to close all active connections.

    Message to close all active connections. The MongoDBSystem actor must not be used after this message has been sent.

  2. object Closed extends Product with Serializable

    Permalink

    MongoDBSystem has been shut down.

  3. object Exceptions

    Permalink
  4. object ExpectingResponse

    Permalink
  5. object GetLastMetadata extends Product with Serializable

    Permalink
  6. object PrimaryUnavailable extends Product with Serializable

    Permalink

    Message sent when the primary has been lost.

  7. object RegisterMonitor extends Product with Serializable

    Permalink

    Register a monitor.

  8. object SetUnavailable extends Product with Serializable

    Permalink

Deprecated Value Members

  1. object MongoDBSystem

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.14) Internal class: will be made private

  2. object WaitForPrimary extends Product with Serializable

    Permalink

    A message to send to a MonitorActor to be warned when a primary has been discovered.

    A message to send to a MonitorActor to be warned when a primary has been discovered.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.10) Wil be removed

Ungrouped