com.mongodb.casbah

util

package util

Visibility
  1. Public
  2. All

Type Members

  1. case class MongoDeleteOperation(timestamp: BSONTimestamp, opID: Option[Long], namespace: String, document: MongoDBObject) extends MongoOpLogEntry with Product with Serializable

  2. case class MongoInsertOperation(timestamp: BSONTimestamp, opID: Option[Long], namespace: String, document: MongoDBObject) extends MongoOpLogEntry with Product with Serializable

  3. class MongoOpLog extends Iterator[MongoOpLogEntry] with Logging

    For a more detailed understanding of how the MongoDB Oplog works, see Kristina Chodorow's blogpost:

  4. sealed trait MongoOpLogEntry extends AnyRef

  5. sealed trait MongoOpType extends AnyRef

  6. case class MongoUpdateOperation(timestamp: BSONTimestamp, opID: Option[Long], namespace: String, document: MongoDBObject, documentID: MongoDBObject) extends MongoOpLogEntry with Product with Serializable

Value Members

  1. object DeleteOp extends MongoOpType with Product with Serializable

  2. object InsertOp extends MongoOpType with Product with Serializable

  3. object MongoOpLogEntry extends AnyRef

  4. object UpdateOp extends MongoOpType with Product with Serializable