class MakableCommand extends AnyRef

A makable command, that can produce a request maker ready to be sent to a reactivemongo.core.actors.MongoDBSystem actor.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MakableCommand
  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. Protected

Instance Constructors

  1. new MakableCommand(db: String, command: Command[_])

    db

    Database name.

    command

    Subject command.

Value Members

  1. val command: Command[_]
  2. val db: String
  3. def makeQuery: Query

    Produces the reactivemongo.core.protocol.Query instance for the given command.

  4. def maker(readPreference: ReadPreference): RequestMaker

    Returns the reactivemongo.core.protocol.RequestMaker for the given command, using the given ReadPreference.

  5. def maker: RequestMaker

    Returns the reactivemongo.core.protocol.RequestMaker for the given command.