case class Aggregate(collectionName: String, pipeline: Seq[PipelineOperator]) extends Command[Stream[BSONDocument]] with Product with Serializable

Annotations
@deprecated
Deprecated

(Since version 0.12-RC5) Use reactivemongo.api.collections.GenericCollection.aggregateWith

Linear Supertypes
Serializable, Product, Equals, Command[Stream[BSONDocument]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Aggregate
  2. Serializable
  3. Product
  4. Equals
  5. Command
  6. AnyRef
  7. Any
Implicitly
  1. by valueProducer
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Aggregate(collectionName: String, pipeline: Seq[PipelineOperator])

Value Members

  1. val ResultMaker: Aggregate.type

    Deserializer for this command's result.

    Deserializer for this command's result.

    Definition Classes
    AggregateCommand
  2. def apply(db: String): MakableCommand

    Produces a reactivemongo.core.commands.MakableCommand instance of this command.

    Produces a reactivemongo.core.commands.MakableCommand instance of this command.

    db

    name of the target database.

    Definition Classes
    Command
  3. val collectionName: String
  4. def makeDocuments: BSONDocument

    Makes the BSONDocument for documents that will be send as body of this command's query.

    Makes the BSONDocument for documents that will be send as body of this command's query.

    Definition Classes
    AggregateCommand
  5. val pipeline: Seq[PipelineOperator]
  6. def productElementNames: Iterator[String]
    Definition Classes
    Product
  7. def slaveOk: Boolean

    States if this command can be run on secondaries.

    States if this command can be run on secondaries.

    Definition Classes
    Command