case class Operation(ts: Long, t: Int, h: Long, v: Int, op: Char, ns: String, wall: Long, o: Json) extends Product with Serializable
Record entry from OperationsLog
See: http://dbversity.com/mongodb-understanding-oplog/
- ts
time of the operation
- t
unknown
- h
unique id hash for each operation
- v
version
- op
operation type: i: insert d: delete u: update c: command operation n: noop
- ns
the database and collection affected by the operation (db.collection)
- wall
wall clock time
- o
operation data
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Operation
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
Operation(ts: Long, t: Int, h: Long, v: Int, op: Char, ns: String, wall: Long, o: Json)
- ts
time of the operation
- t
unknown
- h
unique id hash for each operation
- v
version
- op
operation type: i: insert d: delete u: update c: command operation n: noop
- ns
the database and collection affected by the operation (db.collection)
- wall
wall clock time
- o
operation data
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val h: Long
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val ns: String
- val o: Json
- val op: Char
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val t: Int
- val ts: Long
- lazy val type: OpType
- val v: Int
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- val wall: Long