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
- Alphabetic
- By Inheritance
Inherited
- Factory
- Writable
- HasDescription
- Identifiable
- Logging
- AbstractFactory
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Factory()(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[A])
Abstract Value Members
-
abstract
def
get(): A
Get the processed data
Get the processed data
- Definition Classes
- Factory → AbstractFactory
-
abstract
def
process(): Factory.this.type
Process data
Process data
- Definition Classes
- Factory → AbstractFactory
-
abstract
def
read(): Factory.this.type
Read data
Read data
- Definition Classes
- Factory → AbstractFactory
-
abstract
def
write(): Factory.this.type
Write data
Write data
- Definition Classes
- Factory → AbstractFactory
Concrete 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
-
val
_write: Boolean
- Attributes
- protected
- Definition Classes
- Writable
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
consumers: Seq[Class[_ <: Factory[_]]]
Return the list of consumer class
-
def
deliveryId: String
Return the delivery id of this factory
-
def
deliveryType(): scala.reflect.api.JavaUniverse.Type
Get the type of deliverable payload
-
def
describe(): Factory.this.type
Describe the
Describe the
- Definition Classes
- Factory → HasDescription
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
getCanonicalName: String
- Definition Classes
- Identifiable
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getDelivery: Deliverable[A]
Create a new Deliverable object
-
def
getPrettyName: String
- Definition Classes
- HasDescription
-
def
getUUID: UUID
- Definition Classes
- Identifiable
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
log: Logger
- Attributes
- protected
- Definition Classes
- Logging
-
def
logDebug(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
logError(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
logInfo(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
logName: String
- Attributes
- protected
- Definition Classes
- Logging
-
def
logTrace(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
logWarning(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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()
-
def
writable: Boolean
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
-
def
writable(write: Boolean): Factory.this.type
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