Class/Object

it.agilelab.bigdata.wasp.consumers.spark.streaming.actor.etl

StructuredStreamingETLActor

Related Docs: object StructuredStreamingETLActor | package etl

Permalink

class StructuredStreamingETLActor extends FSM[State, Data] with LoggingFSM[State, Data] with ActivationSteps with MaterializationSteps with MonitoringStep with StoppingStep

Linear Supertypes
StoppingStep, MonitoringStep, MaterializationSteps, ActivationSteps, LoggingFSM[etl.State, Data], FSM[etl.State, Data], ActorLogging, Listeners, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StructuredStreamingETLActor
  2. StoppingStep
  3. MonitoringStep
  4. MaterializationSteps
  5. ActivationSteps
  6. LoggingFSM
  7. FSM
  8. ActorLogging
  9. Listeners
  10. Actor
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Event = akka.actor.FSM.Event[Data]

    Permalink
    Definition Classes
    FSM
  2. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor
  3. type State = akka.actor.FSM.State[etl.State, Data]

    Permalink
    Definition Classes
    FSM
  4. type StateFunction = PartialFunction[Event, State]

    Permalink
    Definition Classes
    FSM
  5. type StopEvent = akka.actor.FSM.StopEvent[etl.State, Data]

    Permalink
    Definition Classes
    FSM
  6. type Timeout = Option[FiniteDuration]

    Permalink
    Definition Classes
    FSM
  7. final class TransformHelper extends AnyRef

    Permalink
    Definition Classes
    FSM
  8. type TransitionHandler = PartialFunction[(etl.State, etl.State), Unit]

    Permalink
    Definition Classes
    FSM

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. val ->: akka.actor.FSM.->.type

    Permalink
    Definition Classes
    FSM
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. val Event: akka.actor.FSM.Event.type

    Permalink
    Definition Classes
    FSM
  6. val StateTimeout: akka.actor.FSM.StateTimeout.type

    Permalink
    Definition Classes
    FSM
  7. val StopEvent: akka.actor.FSM.StopEvent.type

    Permalink
    Definition Classes
    FSM
  8. def activate(etl: StructuredStreamingETLModel, pipegraph: PipegraphModel): Try[DataFrame]

    Permalink

    Performs activation of a StructuredStreamingETLModel returning the output data frame

    Performs activation of a StructuredStreamingETLModel returning the output data frame

    etl

    The StructuredStreamingETLModel to activate

    returns

    the output dataframe

    Attributes
    protected
    Definition Classes
    ActivationSteps
  9. def aroundPostRestart(reason: Throwable): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  10. def aroundPostStop(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  11. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  12. def aroundPreStart(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  13. def aroundReceive(receive: akka.actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. final def cancelTimer(name: String): Unit

    Permalink
    Definition Classes
    FSM
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. implicit val context: ActorContext

    Permalink
    Definition Classes
    Actor
  18. def createStrategy(etl: StructuredStreamingETLModel, pipegraph: PipegraphModel): Try[Option[Strategy]]

    Permalink

    Instantiate a strategy if one is configured

    Instantiate a strategy if one is configured

    etl

    The etl to instantiate strategy for

    returns

    A try holding an optional strategy

    Attributes
    protected
    Definition Classes
    ActivationSteps
  19. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. val freeCodeBL: FreeCodeBL

    Permalink

    We need access to freeCodes

    We need access to freeCodes

    Definition Classes
    StructuredStreamingETLActorActivationSteps
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def getLog: IndexedSeq[LogEntry[etl.State, Data]]

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingFSM
  25. def gossip(msg: Any)(implicit sender: ActorRef): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Listeners
  26. final def goto(nextStateName: etl.State): State

    Permalink
    Definition Classes
    FSM
  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def initialize(): Unit

    Permalink
    Definition Classes
    FSM
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. final def isTimerActive(name: String): Boolean

    Permalink
    Definition Classes
    FSM
  31. def listenerManagement: akka.actor.Actor.Receive

    Permalink
    Attributes
    protected
    Definition Classes
    Listeners
  32. val listeners: Set[ActorRef]

    Permalink
    Attributes
    protected
    Definition Classes
    Listeners
  33. def log: LoggingAdapter

    Permalink
    Definition Classes
    ActorLogging
  34. def logDepth: Int

    Permalink
    Definition Classes
    LoggingFSM
  35. def logTermination(reason: Reason): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    FSM
  36. def materialize(etl: StructuredStreamingETLModel, pipegraph: PipegraphModel, dataFrame: DataFrame): Try[StreamingQuery]

    Permalink

    Performs materialization of a DataFrame activated from a StructuredStreamingETLModel.

    Performs materialization of a DataFrame activated from a StructuredStreamingETLModel.

    etl

    The etl whose output dataFrame is being materialized

    pipegraph

    The pipegraph containing the etl

    dataFrame

    The DataFrame created by the activation step

    returns

    The Materialized StreamingQuery

    Attributes
    protected
    Definition Classes
    MaterializationSteps
  37. val mlModelBl: MlModelBL

    Permalink

    We need access to machine learning models

    We need access to machine learning models

    Definition Classes
    StructuredStreamingETLActorActivationSteps
  38. def monitor(query: StreamingQuery): Try[MonitorOutcome]

    Permalink

    Monitors a streaming query.

    Monitors a streaming query.

    query

    The query to be monitored

    returns

    The MonitorOutcome

    Attributes
    protected
    Definition Classes
    MonitoringStep
  39. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  40. final def nextStateData: Data

    Permalink
    Definition Classes
    FSM
  41. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  43. final def onTermination(terminationHandler: PartialFunction[StopEvent, Unit]): Unit

    Permalink
    Definition Classes
    FSM
  44. final def onTransition(transitionHandler: TransitionHandler): Unit

    Permalink
    Definition Classes
    FSM
  45. val pipegraph: PipegraphModel

    Permalink
  46. def postRestart(reason: Throwable): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  47. def postStop(): Unit

    Permalink
    Definition Classes
    FSM → Actor
  48. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  49. def preStart(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  50. val processGroupBL: ProcessGroupBL

    Permalink

    We need access to freeCodes

    We need access to freeCodes

    Definition Classes
    StructuredStreamingETLActorActivationSteps
  51. def receive: Receive

    Permalink
    Definition Classes
    FSM → Actor
  52. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  53. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  54. final def setStateTimeout(state: etl.State, timeout: Timeout): Unit

    Permalink
    Definition Classes
    FSM
  55. final def setTimer(name: String, msg: Any, timeout: FiniteDuration, repeat: Boolean): Unit

    Permalink
    Definition Classes
    FSM
  56. val sparkSession: SparkSession

    Permalink

    We need a Spark Session

    We need a Spark Session

    Definition Classes
    StructuredStreamingETLActorMaterializationStepsActivationSteps
  57. final def startWith(stateName: etl.State, stateData: Data, timeout: Timeout): Unit

    Permalink
    Definition Classes
    FSM
  58. final def stateData: Data

    Permalink
    Definition Classes
    FSM
  59. final def stateName: etl.State

    Permalink
    Definition Classes
    FSM
  60. val staticReaderFactory: StaticReaderFactory

    Permalink

    We need a static reader factory

    We need a static reader factory

    Definition Classes
    StructuredStreamingETLActorActivationSteps
  61. final def stay(): State

    Permalink
    Definition Classes
    FSM
  62. def stop(query: StreamingQuery): Try[Unit]

    Permalink

    Stops the streaming query

    Stops the streaming query

    query

    The streaming query to stop

    returns

    The result of the stop action

    Attributes
    protected
    Definition Classes
    StoppingStep
  63. final def stop(reason: Reason, stateData: Data): State

    Permalink
    Definition Classes
    FSM
  64. final def stop(reason: Reason): State

    Permalink
    Definition Classes
    FSM
  65. final def stop(): State

    Permalink
    Definition Classes
    FSM
  66. val streamingReaderFactory: StreamingReaderFactory

    Permalink

    We need a streaming reader factory

    We need a streaming reader factory

    Definition Classes
    StructuredStreamingETLActorActivationSteps
  67. def supervisorStrategy: SupervisorStrategy

    Permalink
    Definition Classes
    Actor
  68. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  69. val telemetryActor: ActorRef

    Permalink
  70. val telemetryActorFactory: TelemetryActorFactory

    Permalink
  71. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  72. val topicsBl: TopicBL

    Permalink

    We need access to topics

    We need access to topics

    Definition Classes
    StructuredStreamingETLActorActivationSteps
  73. implicit final def total2pf(transitionHandler: (etl.State, etl.State) ⇒ Unit): TransitionHandler

    Permalink
    Definition Classes
    FSM
  74. final def transform(func: StateFunction): TransformHelper

    Permalink
    Definition Classes
    FSM
  75. def unhandled(message: Any): Unit

    Permalink
    Definition Classes
    Actor
  76. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. final def when(stateName: etl.State, stateTimeout: FiniteDuration)(stateFunction: StateFunction): Unit

    Permalink
    Definition Classes
    FSM
  80. final def whenUnhandled(stateFunction: StateFunction): Unit

    Permalink
    Definition Classes
    FSM
  81. val writerFactory: WriterFactory

    Permalink

    We need a writer factory

    We need a writer factory

    Definition Classes
    StructuredStreamingETLActorMaterializationSteps

Inherited from StoppingStep

Inherited from MonitoringStep

Inherited from MaterializationSteps

Inherited from ActivationSteps

Inherited from LoggingFSM[etl.State, Data]

Inherited from FSM[etl.State, Data]

Inherited from ActorLogging

Inherited from Listeners

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped