c

com.mongodb.casbah.util

MongoOpLog

class MongoOpLog extends Iterator[MongoOpLogEntry] with Logging

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

http://www.kchodorow.com/blog/2010/10/12/replication-internals/

Linear Supertypes
Logging, Iterator[MongoOpLogEntry], TraversableOnce[MongoOpLogEntry], GenTraversableOnce[MongoOpLogEntry], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoOpLog
  2. Logging
  3. Iterator
  4. TraversableOnce
  5. GenTraversableOnce
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoOpLog(mongoClient: Imports.MongoClient = MongoClient(), startTimestamp: Option[BSONTimestamp] = None, namespace: Option[String] = None, replicaSet: Boolean = true)

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
    Definition Classes
    Iterator

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++[B >: MongoOpLogEntry](that: ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  4. def /:[B](z: B)(op: (B, MongoOpLogEntry) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  5. def :\[B](z: B)(op: (MongoOpLogEntry, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  8. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  10. def aggregate[B](z: ⇒ B)(seqop: (B, MongoOpLogEntry) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def buffered: BufferedIterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def close(): Unit
  15. def collect[B](pf: PartialFunction[MongoOpLogEntry, B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) collect has changed. The previous behavior can be reproduced with toSeq.

  16. def collectFirst[B](pf: PartialFunction[MongoOpLogEntry, B]): Option[B]
    Definition Classes
    TraversableOnce
  17. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  18. def copyToArray[B >: MongoOpLogEntry](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  19. def copyToArray[B >: MongoOpLogEntry](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: MongoOpLogEntry](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToBuffer[B >: MongoOpLogEntry](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  22. def corresponds[B](that: GenTraversableOnce[B])(p: (MongoOpLogEntry, B) ⇒ Boolean): Boolean
    Definition Classes
    Iterator
  23. def count(p: (MongoOpLogEntry) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. val cursor: MongoCollection.CursorType
  25. def drop(n: Int): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  26. def dropWhile(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  27. def duplicate: (Iterator[MongoOpLogEntry], Iterator[MongoOpLogEntry])
    Definition Classes
    Iterator
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  30. def exists(p: (MongoOpLogEntry) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  31. def filter(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  32. def filterNot(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  33. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  34. def find(p: (MongoOpLogEntry) ⇒ Boolean): Option[MongoOpLogEntry]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  35. def flatMap[B](f: (MongoOpLogEntry) ⇒ GenTraversableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  36. def fold[A1 >: MongoOpLogEntry](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  37. def foldLeft[B](z: B)(op: (B, MongoOpLogEntry) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def foldRight[B](z: B)(op: (MongoOpLogEntry, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def forall(p: (MongoOpLogEntry) ⇒ Boolean): Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  40. def foreach[U](f: (MongoOpLogEntry) ⇒ U): Unit
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  41. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  42. def grouped[B >: MongoOpLogEntry](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  43. def hasDefiniteSize: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  44. def hasNext: Boolean
    Definition Classes
    MongoOpLog → Iterator
  45. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  46. def indexOf[B >: MongoOpLogEntry](elem: B, from: Int): Int
    Definition Classes
    Iterator
  47. def indexOf[B >: MongoOpLogEntry](elem: B): Int
    Definition Classes
    Iterator
  48. def indexWhere(p: (MongoOpLogEntry) ⇒ Boolean, from: Int): Int
    Definition Classes
    Iterator
  49. def indexWhere(p: (MongoOpLogEntry) ⇒ Boolean): Int
    Definition Classes
    Iterator
  50. def isEmpty: Boolean
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  51. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  52. def isTraversableAgain: Boolean
    Definition Classes
    Iterator → GenTraversableOnce
  53. def length: Int
    Definition Classes
    Iterator
  54. val local: Imports.MongoDB
    Attributes
    protected
  55. val log: Logger
    Attributes
    protected[com.mongodb.casbah]
    Definition Classes
    Logging
    Annotations
    @transient() @volatile()
  56. def map[B](f: (MongoOpLogEntry) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  57. def max[B >: MongoOpLogEntry](implicit cmp: Ordering[B]): MongoOpLogEntry
    Definition Classes
    TraversableOnce → GenTraversableOnce
  58. def maxBy[B](f: (MongoOpLogEntry) ⇒ B)(implicit cmp: Ordering[B]): MongoOpLogEntry
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def min[B >: MongoOpLogEntry](implicit cmp: Ordering[B]): MongoOpLogEntry
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def minBy[B](f: (MongoOpLogEntry) ⇒ B)(implicit cmp: Ordering[B]): MongoOpLogEntry
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. def next(): Product with Serializable with MongoOpLogEntry { val opType: Product with Serializable with com.mongodb.casbah.util.MongoOpType }
    Definition Classes
    MongoOpLog → Iterator
  66. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. final def notify(): Unit
    Definition Classes
    AnyRef
  68. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  69. val oplog: Imports.MongoCollection
    Attributes
    protected
  70. val oplogName: String
    Attributes
    protected
  71. def padTo[A1 >: MongoOpLogEntry](len: Int, elem: A1): Iterator[A1]
    Definition Classes
    Iterator
  72. def partition(p: (MongoOpLogEntry) ⇒ Boolean): (Iterator[MongoOpLogEntry], Iterator[MongoOpLogEntry])
    Definition Classes
    Iterator
  73. def patch[B >: MongoOpLogEntry](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  74. def product[B >: MongoOpLogEntry](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. val q: commons.Imports.DBObject
  76. def reduce[A1 >: MongoOpLogEntry](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def reduceLeft[B >: MongoOpLogEntry](op: (B, MongoOpLogEntry) ⇒ B): B
    Definition Classes
    TraversableOnce
  78. def reduceLeftOption[B >: MongoOpLogEntry](op: (B, MongoOpLogEntry) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceOption[A1 >: MongoOpLogEntry](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reduceRight[B >: MongoOpLogEntry](op: (MongoOpLogEntry, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reduceRightOption[B >: MongoOpLogEntry](op: (MongoOpLogEntry, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. def reversed: List[MongoOpLogEntry]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  83. def sameElements(that: Iterator[_]): Boolean
    Definition Classes
    Iterator
  84. def scanLeft[B](z: B)(op: (B, MongoOpLogEntry) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  85. def scanRight[B](z: B)(op: (MongoOpLogEntry, B) ⇒ B): Iterator[B]
    Definition Classes
    Iterator
  86. def seq: Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  87. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  89. def slice(from: Int, until: Int): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  90. def sliceIterator(from: Int, until: Int): Iterator[MongoOpLogEntry]
    Attributes
    protected
    Definition Classes
    Iterator
  91. def sliding[B >: MongoOpLogEntry](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  92. def span(p: (MongoOpLogEntry) ⇒ Boolean): (Iterator[MongoOpLogEntry], Iterator[MongoOpLogEntry])
    Definition Classes
    Iterator
  93. def sum[B >: MongoOpLogEntry](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  95. def take(n: Int): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  96. def takeWhile(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  97. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, MongoOpLogEntry, Col[MongoOpLogEntry]]): Col[MongoOpLogEntry]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toArray[B >: MongoOpLogEntry](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toBuffer[B >: MongoOpLogEntry]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toIndexedSeq: IndexedSeq[MongoOpLogEntry]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toIterable: Iterable[MongoOpLogEntry]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def toIterator: Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator → GenTraversableOnce
  103. def toList: List[MongoOpLogEntry]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toMap[T, U](implicit ev: <:<[MongoOpLogEntry, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toSeq: Seq[MongoOpLogEntry]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def toSet[B >: MongoOpLogEntry]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def toStream: Stream[MongoOpLogEntry]
    Definition Classes
    Iterator → GenTraversableOnce
  108. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  109. def toTraversable: Traversable[MongoOpLogEntry]
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  110. def toVector: Vector[MongoOpLogEntry]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. val tsp: BSONTimestamp
  112. def verifyOpLog: BSONTimestamp
  113. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  114. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  115. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  116. def withFilter(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]
    Definition Classes
    Iterator
  117. def zip[B](that: Iterator[B]): Iterator[(MongoOpLogEntry, B)]
    Definition Classes
    Iterator
  118. def zipAll[B, A1 >: MongoOpLogEntry, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
    Definition Classes
    Iterator
  119. def zipWithIndex: Iterator[(MongoOpLogEntry, Int)]
    Definition Classes
    Iterator
  120. implicit object BSONTimestampOk extends Imports.ValidDateOrNumericType[BSONTimestamp]

Inherited from Logging

Inherited from Iterator[MongoOpLogEntry]

Inherited from TraversableOnce[MongoOpLogEntry]

Inherited from GenTraversableOnce[MongoOpLogEntry]

Inherited from AnyRef

Inherited from Any

Ungrouped