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/

Source
OpLog.scala
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
Learn more about member selection
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. implicit object BSONTimestampOk extends Imports.ValidDateOrNumericType[BSONTimestamp]

  8. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  11. def aggregate[B](z: ⇒ B)(seqop: (B, MongoOpLogEntry) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def buffered: BufferedIterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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: 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): Int

    Definition Classes
    Iterator
  47. def indexWhere(p: (MongoOpLogEntry) ⇒ Boolean): Int

    Definition Classes
    Iterator
  48. def isEmpty: Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  49. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  50. def isTraversableAgain: Boolean

    Definition Classes
    Iterator → GenTraversableOnce
  51. def length: Int

    Definition Classes
    Iterator
  52. val local: Imports.MongoDB

    Attributes
    protected
  53. var log: Logger

    Attributes
    protected[com.mongodb.casbah]
    Definition Classes
    Logging
  54. def map[B](f: (MongoOpLogEntry) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  55. def max[B >: MongoOpLogEntry](implicit cmp: Ordering[B]): MongoOpLogEntry

    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def maxBy[B](f: (MongoOpLogEntry) ⇒ B)(implicit cmp: Ordering[B]): MongoOpLogEntry

    Definition Classes
    TraversableOnce → GenTraversableOnce
  57. def min[B >: MongoOpLogEntry](implicit cmp: Ordering[B]): MongoOpLogEntry

    Definition Classes
    TraversableOnce → GenTraversableOnce
  58. def minBy[B](f: (MongoOpLogEntry) ⇒ B)(implicit cmp: Ordering[B]): MongoOpLogEntry

    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  63. def next(): Product with Serializable with MongoOpLogEntry { val opType: Product with Serializable with com.mongodb.casbah.util.MongoOpType }

    Definition Classes
    MongoOpLog → Iterator
  64. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. final def notify(): Unit

    Definition Classes
    AnyRef
  66. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  67. val oplog: Imports.MongoCollection

    Attributes
    protected
  68. val oplogName: String

    Attributes
    protected
  69. def padTo[A1 >: MongoOpLogEntry](len: Int, elem: A1): Iterator[A1]

    Definition Classes
    Iterator
  70. def partition(p: (MongoOpLogEntry) ⇒ Boolean): (Iterator[MongoOpLogEntry], Iterator[MongoOpLogEntry])

    Definition Classes
    Iterator
  71. def patch[B >: MongoOpLogEntry](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

    Definition Classes
    Iterator
  72. def product[B >: MongoOpLogEntry](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. val q: commons.Imports.DBObject

  74. def reduce[A1 >: MongoOpLogEntry](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def reduceLeft[B >: MongoOpLogEntry](op: (B, MongoOpLogEntry) ⇒ B): B

    Definition Classes
    TraversableOnce
  76. def reduceLeftOption[B >: MongoOpLogEntry](op: (B, MongoOpLogEntry) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def reduceOption[A1 >: MongoOpLogEntry](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def reduceRight[B >: MongoOpLogEntry](op: (MongoOpLogEntry, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceRightOption[B >: MongoOpLogEntry](op: (MongoOpLogEntry, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reversed: List[MongoOpLogEntry]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  81. def sameElements(that: Iterator[_]): Boolean

    Definition Classes
    Iterator
  82. def scanLeft[B](z: B)(op: (B, MongoOpLogEntry) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  83. def scanRight[B](z: B)(op: (MongoOpLogEntry, B) ⇒ B): Iterator[B]

    Definition Classes
    Iterator
  84. def seq: Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  85. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def slice(from: Int, until: Int): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  87. def sliding[B >: MongoOpLogEntry](size: Int, step: Int): GroupedIterator[B]

    Definition Classes
    Iterator
  88. def span(p: (MongoOpLogEntry) ⇒ Boolean): (Iterator[MongoOpLogEntry], Iterator[MongoOpLogEntry])

    Definition Classes
    Iterator
  89. def sum[B >: MongoOpLogEntry](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  91. def take(n: Int): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  92. def takeWhile(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  93. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, MongoOpLogEntry, Col[MongoOpLogEntry]]): Col[MongoOpLogEntry]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def toArray[B >: MongoOpLogEntry](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def toBuffer[B >: MongoOpLogEntry]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def toIndexedSeq: IndexedSeq[MongoOpLogEntry]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toIterable: Iterable[MongoOpLogEntry]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toIterator: Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator → GenTraversableOnce
  99. def toList: List[MongoOpLogEntry]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toMap[T, U](implicit ev: <:<[MongoOpLogEntry, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toSeq: Seq[MongoOpLogEntry]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def toSet[B >: MongoOpLogEntry]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def toStream: Stream[MongoOpLogEntry]

    Definition Classes
    Iterator → GenTraversableOnce
  104. def toString(): String

    Definition Classes
    Iterator → AnyRef → Any
  105. def toTraversable: Traversable[MongoOpLogEntry]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  106. def toVector: Vector[MongoOpLogEntry]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. val tsp: BSONTimestamp

  108. def verifyOpLog: BSONTimestamp

  109. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  110. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  111. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  112. def withFilter(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  113. def zip[B](that: Iterator[B]): Iterator[(MongoOpLogEntry, B)]

    Definition Classes
    Iterator
  114. def zipAll[B, A1 >: MongoOpLogEntry, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]

    Definition Classes
    Iterator
  115. def zipWithIndex: Iterator[(MongoOpLogEntry, Int)]

    Definition Classes
    Iterator

Inherited from Logging

Inherited from Iterator[MongoOpLogEntry]

Inherited from TraversableOnce[MongoOpLogEntry]

Inherited from GenTraversableOnce[MongoOpLogEntry]

Inherited from AnyRef

Inherited from Any

Ungrouped