Class

com.jcdecaux.setl.transformation

Factory

Related Doc: package transformation

Permalink

abstract class Factory[A] extends AbstractFactory[A] with Logging with Identifiable with HasDescription with Writable

Factory could be used to manipulate data.

A Factory is able to read data from a data source, process/transform it and write it back to the storage.

A

the type of object that the factory is supposed to produce

Annotations
@Evolving()
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Factory
  2. Writable
  3. HasDescription
  4. Identifiable
  5. Logging
  6. AbstractFactory
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Factory()(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[A])

    Permalink

Abstract Value Members

  1. abstract def get(): A

    Permalink

    Get the processed data

    Get the processed data

    Definition Classes
    FactoryAbstractFactory
  2. abstract def process(): Factory.this.type

    Permalink

    Process data

    Process data

    Definition Classes
    FactoryAbstractFactory
  3. abstract def read(): Factory.this.type

    Permalink

    Read data

    Read data

    Definition Classes
    FactoryAbstractFactory
  4. abstract def write(): Factory.this.type

    Permalink

    Write data

    Write data

    Definition Classes
    FactoryAbstractFactory

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. var _write: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Writable
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def consumers: Seq[Class[_ <: Factory[_]]]

    Permalink

    Return the list of consumer class

  8. def deliveryId: String

    Permalink

    Return the delivery id of this factory

  9. def deliveryType(): scala.reflect.api.JavaUniverse.Type

    Permalink

    Get the type of deliverable payload

  10. def describe(): Factory.this.type

    Permalink

    Describe the

    Describe the

    Definition Classes
    FactoryHasDescription
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def getCanonicalName: String

    Permalink
    Definition Classes
    Identifiable
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def getDelivery: Deliverable[A]

    Permalink

    Create a new Deliverable object

  17. def getPrettyName: String

    Permalink
    Definition Classes
    HasDescription
  18. def getPrettyName(tpe: scala.reflect.api.JavaUniverse.Type): String

    Permalink
    Definition Classes
    HasDescription
  19. def getPrettyName(canonicalName: String): String

    Permalink
    Definition Classes
    HasDescription
  20. def getPrettyName(cls: Class[_]): String

    Permalink
    Definition Classes
    HasDescription
  21. def getUUID: UUID

    Permalink
    Definition Classes
    Identifiable
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def log: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  25. def logName: String

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def writable: Boolean

    Permalink

    Return true if the write method will be invoked by the pipeline

    Return true if the write method will be invoked by the pipeline

    Definition Classes
    Writable
  35. def writable(write: Boolean): Factory.this.type

    Permalink

    Whether invoke the write method or not

    Whether invoke the write method or not

    write

    if set to true, then the write method of the factory will be invoked

    Definition Classes
    Writable

Deprecated Value Members

  1. def persist: Boolean

    Permalink

    Return true if the write method will be invoked by the pipeline

    Return true if the write method will be invoked by the pipeline

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) To avoid misunderstanding, use writable

  2. def persist(persistence: Boolean): Factory.this.type

    Permalink

    Alias of writable

    Alias of writable

    persistence

    if set to true, then the write method of the factory will be invoked

    Annotations
    @deprecated
    Deprecated

    (Since version 0.4.0) To avoid misunderstanding, use writable()

Inherited from Writable

Inherited from HasDescription

Inherited from Identifiable

Inherited from Logging

Inherited from AbstractFactory[A]

Inherited from AnyRef

Inherited from Any

Ungrouped