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. Hide All
  2. Show all
  1. MongoOpLog
  2. Logging
  3. Iterator
  4. TraversableOnce
  5. GenTraversableOnce
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Instance Constructors

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

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++[B >: MongoOpLogEntry](that: ⇒ GenTraversableOnce[B]): Iterator[B]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  6. def /:\[A1 >: MongoOpLogEntry](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
  7. def :\[B](z: B)(op: (MongoOpLogEntry, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  10. implicit object BSONTimestampOk extends ValidDateOrNumericType[BSONTimestamp]

  11. def addString(b: StringBuilder): StringBuilder

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

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

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

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

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

    Definition Classes
    Iterator
  17. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  18. def close(): Unit

  19. 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.

  20. def collectFirst[B](pf: PartialFunction[MongoOpLogEntry, B]): Option[B]

    Definition Classes
    TraversableOnce
  21. def contains(elem: Any): Boolean

    Definition Classes
    Iterator
  22. def copyToArray[B >: MongoOpLogEntry](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  23. def copyToArray[B >: MongoOpLogEntry](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def copyToArray[B >: MongoOpLogEntry](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def copyToBuffer[B >: MongoOpLogEntry](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  26. def count(p: (MongoOpLogEntry) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. val cursor: CursorType

  28. def drop(n: Int): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  29. def dropWhile(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  30. def duplicate: (Iterator[MongoOpLogEntry], Iterator[MongoOpLogEntry])

    Definition Classes
    Iterator
  31. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  33. def exists(p: (MongoOpLogEntry) ⇒ Boolean): Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  34. def filter(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  35. def filterNot(p: (MongoOpLogEntry) ⇒ Boolean): Iterator[MongoOpLogEntry]

    Definition Classes
    Iterator
  36. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  37. def find(p: (MongoOpLogEntry) ⇒ Boolean): Option[MongoOpLogEntry]

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  38. def flatMap[B](f: (MongoOpLogEntry) ⇒ GenTraversableOnce[B]): Iterator[B]

    Definition Classes
    Iterator
  39. def fold[A1 >: MongoOpLogEntry](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def foldLeft[B](z: B)(op: (B, MongoOpLogEntry) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldRight[B](z: B)(op: (MongoOpLogEntry, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def forall(p: (MongoOpLogEntry) ⇒ Boolean): Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  43. def foreach[U](f: (MongoOpLogEntry) ⇒ U): Unit

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  44. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  45. def grouped[B >: MongoOpLogEntry](size: Int): GroupedIterator[B]

    Definition Classes
    Iterator
  46. def hasDefiniteSize: Boolean

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  47. def hasNext: Boolean

    Definition Classes
    MongoOpLog → Iterator
  48. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  49. def indexOf[B >: MongoOpLogEntry](elem: B): Int

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

    Definition Classes
    Iterator
  51. def isEmpty: Boolean

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

    Definition Classes
    Any
  53. def isTraversableAgain: Boolean

    Definition Classes
    Iterator → GenTraversableOnce
  54. def length: Int

    Definition Classes
    Iterator
  55. val local: MongoDB

    Attributes
    protected
  56. var log: Logger

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def mkString: String

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

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

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

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

    Definition Classes
    MongoOpLog → Iterator
  67. def nonEmpty: Boolean

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

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

    Definition Classes
    AnyRef
  70. val oplog: MongoCollection

    Attributes
    protected
  71. val oplogName: String

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. val q: DBObject

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    Iterator
  96. def toArray[B >: MongoOpLogEntry](implicit arg0: ClassManifest[B]): Array[B]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toIndexedSeq[B >: MongoOpLogEntry]: IndexedSeq[B]

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

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

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

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

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

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

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

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

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

    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  108. val tsp: BSONTimestamp

  109. def verifyOpLog: BSONTimestamp

  110. final def wait(): Unit

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

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

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

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

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

    Definition Classes
    Iterator
  116. def zipWithIndex: Iterator[(MongoOpLogEntry, Int)] { ... /* 2 definitions in type refinement */ }

    Definition Classes
    Iterator

Deprecated Value Members

  1. def append[B >: MongoOpLogEntry](that: Iterator[B]): Iterator[B]

    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.3.2) use ++

  2. def counted: CountedIterator[MongoOpLogEntry]

    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use zipWithIndex in Iterator

  3. def findIndexOf(p: (MongoOpLogEntry) ⇒ Boolean): Int

    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use indexWhere instead

  4. def readInto[B >: MongoOpLogEntry](xs: Array[B]): Unit

    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use copyToArray instead

  5. def readInto[B >: MongoOpLogEntry](xs: Array[B], start: Int): Unit

    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use copyToArray instead

  6. def readInto[B >: MongoOpLogEntry](xs: Array[B], start: Int, sz: Int): Unit

    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use copyToArray instead

Inherited from Logging

Inherited from Iterator[MongoOpLogEntry]

Inherited from TraversableOnce[MongoOpLogEntry]

Inherited from GenTraversableOnce[MongoOpLogEntry]

Inherited from AnyRef

Inherited from Any