case class Changes(sinceVersion: Long, version: Long) extends ProcessingType with Product with Serializable
Indicates that there are new changes to process for this upstream catalog.
This processing type consists of two versions: the version processed in the previous run and the current version. A pipeline can use this additional information to implement incremental processing: calculate and process only the changes that have occurred since the last time the job was submitted.
If incremental processing is not implemented, a pipeline can ignore sinceVersion
and use
version
only.
- sinceVersion
The version processed in the previous run.
- version
The current version to process.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Changes
- Serializable
- Serializable
- Product
- Equals
- ProcessingType
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
Changes(sinceVersion: Long, version: Long)
- sinceVersion
The version processed in the previous run.
- version
The current version to process.
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[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
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 sinceVersion: Long
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
val
version: Long
- Definition Classes
- Changes → ProcessingType
-
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
- @throws( ... ) @native()