Packages

package v4

Linear Supertypes
AnyRef, Any

Type Members

  1. abstract class ETL[T, C <: Configuration] extends AnyRef

    Defines a common workflow for ETL jobs.

    Defines a common workflow for ETL jobs. By definition an ETL can take 1..N sources as input and can produce 1..N output.

    T

    Type used to capture data changes in the ETL

    C

    Configuration type

  2. abstract class ETLP[T, C <: Configuration] extends SingleETL[T, C]
  3. type SimpleETL = ETL[LocalDateTime, SimpleConfiguration]
  4. type SimpleETLP = ETLP[LocalDateTime, SimpleConfiguration]
  5. type SimpleIdETL = ETL[String, SimpleConfiguration]
  6. type SimpleIdETLP = ETLP[String, SimpleConfiguration]
  7. type SimpleSingleETL = SingleETL[LocalDateTime, SimpleConfiguration]
  8. type SimpleSingleIdETL = SingleETL[String, SimpleConfiguration]
  9. type SimpleSingleTimestampETL = SingleETL[LocalDateTime, SimpleConfiguration]
  10. type SimpleTimestampETL = ETL[LocalDateTime, SimpleConfiguration]
  11. type SimpleTimestampETLP = ETLP[LocalDateTime, SimpleConfiguration]
  12. type SimpleTransformationsETL = TransformationsETL[LocalDateTime, SimpleConfiguration]
  13. type SimpleTransformationsIdETL = TransformationsETL[String, SimpleConfiguration]
  14. type SimpleTransformationsTimestampETL = TransformationsETL[LocalDateTime, SimpleConfiguration]
  15. abstract class SingleETL[T, C <: Configuration] extends ETL[T, C]
  16. class TransformationsETL[T, C <: Configuration] extends SingleETL[T, C]

Inherited from AnyRef

Inherited from Any

Ungrouped