abstract class ServerStreamletLogic extends AkkaStreamletLogic
Extends a StreamletLogic. provides access to a containerPort so that it is possible to start a TCP server inside an AkkaStreamlet which will be exposed through an endpoint in Kubernetes.
- Alphabetic
- By Inheritance
- ServerStreamletLogic
- AkkaStreamletLogic
- StreamletLogic
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ServerStreamletLogic(server: Server)(implicit context: AkkaStreamletContext)
Abstract Value Members
-
abstract
def
run(): Unit
This method is called when the streamlet is run.
This method is called when the streamlet is run. Override this method to define what the specific streamlet logic should do.
- Definition Classes
- AkkaStreamletLogic
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
config: Config
The full configuration for the AkkaStreamlet, containing all deployment-time configuration parameters on top of the normal configuration as loaded through ActorSystem.settings.config
The full configuration for the AkkaStreamlet, containing all deployment-time configuration parameters on top of the normal configuration as loaded through ActorSystem.settings.config
- Definition Classes
- AkkaStreamletLogic
-
final
def
containerPort: Int
Returns a TCP port on the container that a streamlet can listen on.
-
implicit
val
context: AkkaStreamletContext
- Definition Classes
- AkkaStreamletLogic → StreamletLogic
-
val
defaultCommitterSettings: CommitterSettings
The CommitterSettings that have been configured from the default configuration
akka.kafka.committer
.The CommitterSettings that have been configured from the default configuration
akka.kafka.committer
.- Definition Classes
- AkkaStreamletLogic
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
implicit final
val
executionContext: ExecutionContextExecutor
The default ExecutionContext of the ActorSystem (the system dispatcher).
The default ExecutionContext of the ActorSystem (the system dispatcher).
- Definition Classes
- AkkaStreamletLogic
-
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
getConfig(): Config
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
final
def
getContainerPort(): Int
Java API Returns a TCP port on the container that a streamlet can listen on.
-
def
getContext(): AkkaStreamletContext
- Definition Classes
- AkkaStreamletLogic → StreamletLogic
-
def
getDefaultCommitterSettings(): CommitterSettings
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getExecutionContext(): ExecutionContextExecutor
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getMaterializer(): Materializer
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
final
def
getMountedPath(volumeMount: VolumeMount): Path
The path mounted for a VolumeMount request from a streamlet.
The path mounted for a VolumeMount request from a streamlet. In a clustered deployment, the mounted path will correspond to the requested mount path in the VolumeMount definition. In a local environment, this path will be replaced by a local folder.
- volumeMount
the volumeMount declaration for which we want to obtain the mounted path.
- returns
the path where the volume is mounted.
- Definition Classes
- AkkaStreamletLogic
- Exceptions thrown
[[cloudflow.streamlets.MountedPathUnavailableException
MountedPathUnavailableException ]] in the case the path is not available.
-
def
getPlainSink[T](outlet: CodecOutlet[T]): Sink[T, NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getPlainSource[T](inlet: CodecInlet[T], resetPosition: ResetPosition): Source[T, NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getPlainSource[T](inlet: CodecInlet[T]): Source[T, NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
final
def
getSinkRef[T](outlet: CodecOutlet[T]): WritableSinkRef[T]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getSinkWithOffsetContext[T](): Sink[Pair[T, CommittableOffset], NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getSinkWithOffsetContext[T](committerSettings: CommitterSettings): Sink[Pair[T, CommittableOffset], NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getSinkWithOffsetContext[T](outlet: CodecOutlet[T], committerSettings: CommitterSettings): Sink[Pair[T, CommittableOffset], NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getSinkWithOffsetContext[T](outlet: CodecOutlet[T]): Sink[Pair[T, CommittableOffset], NotUsed]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getSourceWithOffsetContext[T](inlet: CodecInlet[T]): SourceWithOffsetContext[T]
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
final
def
getStreamletConfig(): Config
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
final
def
getStreamletRef(): String
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
getSystem(): ActorSystem
Java API
Java API
- Definition Classes
- AkkaStreamletLogic
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
implicit final
val
materializer: Materializer
The Materializer that will be used for materializing akka stream graphs.
The Materializer that will be used for materializing akka stream graphs.
- Definition Classes
- AkkaStreamletLogic
-
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()
-
def
plainSink[T](outlet: CodecOutlet[T]): Sink[T, NotUsed]
Creates a sink for publishing
T
records to the outlet.Creates a sink for publishing
T
records to the outlet. The records are partitioned according to thepartitioner
of theoutlet
. Theoutlet
specifies a cloudflow.streamlets.Codec that will be used to serialize the records that are written to Kafka.- Definition Classes
- AkkaStreamletLogic
-
def
plainSource[T](inlet: CodecInlet[T], resetPosition: ResetPosition = Latest): Source[T, NotUsed]
The
plainSource
emitsT
records (as received through theinlet
).The
plainSource
emitsT
records (as received through theinlet
).It has no support for committing offsets to Kafka. The
inlet
specifies a cloudflow.streamlets.Codec that will be used to deserialize the records read from Kafka.- Definition Classes
- AkkaStreamletLogic
-
final
def
runGraph[T](graph: RunnableGraph[T]): T
Java API Launch the execution of the graph.
Java API Launch the execution of the graph.
- Definition Classes
- AkkaStreamletLogic
-
final
def
runGraph[T](graph: RunnableGraph[T]): T
Launch the execution of the graph.
Launch the execution of the graph.
- Definition Classes
- AkkaStreamletLogic
-
final
def
signalReady(): Boolean
Signals that the streamlet is ready to process data.
Signals that the streamlet is ready to process data.
signalReady
completes the StreamletExecution.ready future. When a streamlet is run using the testkit, a StreamletExecution is returned. StreamletExecution.ready can be used for instance to wait for a server streamlet to signal that it is ready to accept requests.- Definition Classes
- AkkaStreamletLogic
-
final
def
sinkRef[T](outlet: CodecOutlet[T]): WritableSinkRef[T]
Creates a SinkRef to write to, for the specified CodeOutlet.
Creates a SinkRef to write to, for the specified CodeOutlet. The records are partitioned according to the
partitioner
of theoutlet
.- outlet
the specified CodeOutlet
- returns
the WritebleSinkRef created
- Definition Classes
- AkkaStreamletLogic
-
def
sinkWithOffsetContext[T]: Sink[(T, CommittableOffset), NotUsed]
Creates a sink, purely for committing the offsets that have been read further upstream.
Creates a sink, purely for committing the offsets that have been read further upstream. Batches offsets from the contexts that accompany the records, and commits these to Kafka.
- Definition Classes
- AkkaStreamletLogic
-
def
sinkWithOffsetContext[T](committerSettings: CommitterSettings): Sink[(T, CommittableOffset), NotUsed]
Creates a sink, purely for committing the offsets that have been read further upstream.
Creates a sink, purely for committing the offsets that have been read further upstream. Batches offsets from the contexts that accompany the records, and commits these to Kafka.
- Definition Classes
- AkkaStreamletLogic
-
def
sinkWithOffsetContext[T](outlet: CodecOutlet[T], committerSettings: CommitterSettings = defaultCommitterSettings): Sink[(T, CommittableOffset), NotUsed]
Creates a sink for publishing records to the outlet.
Creates a sink for publishing records to the outlet. The records are partitioned according to the
partitioner
of theoutlet
. Batches offsets from the contexts that accompany the records, and commits these to Kafka. Theoutlet
specifies a cloudflow.streamlets.Codec that will be used to serialize the records that are written to Kafka.- Definition Classes
- AkkaStreamletLogic
-
def
sourceWithOffsetContext[T](inlet: CodecInlet[T]): SourceWithOffsetContext[T]
This source emits
T
records together with the offset position as context, thus makes it possible to commit offset positions to Kafka (as received through theinlet
).This source emits
T
records together with the offset position as context, thus makes it possible to commit offset positions to Kafka (as received through theinlet
). This is useful when "at-least once delivery" is desired, as each message will likely be delivered one time, but in failure cases, they can be duplicated.It is intended to be used with
sinkWithOffsetContext(outlet: CodecOutlet[T])
or Committer.sinkWithOffsetContext, which both commit the offset positions that accompany the records, read from this source.sinkWithOffsetContext(outlet: CodecOutlet[T])
should be used if you want to commit the offset positions after records have been written to the specifiedoutlet
. Theinlet
specifies a cloudflow.streamlets.Codec that will be used to deserialize the records read from Kafka.- Definition Classes
- AkkaStreamletLogic
-
final
def
streamletConfig: Config
The subset of configuration specific to a single named instance of a streamlet.
The subset of configuration specific to a single named instance of a streamlet.
A cloudflow.streamlets.Streamlet can specify the set of environment- and instance-specific configuration keys it will use during runtime through cloudflow.streamlets.Streamlet.configParameters. Those keys will then be made available through this configuration.
- Definition Classes
- AkkaStreamletLogic
-
final
def
streamletRef: String
The streamlet reference which identifies the streamlet in the blueprint.
The streamlet reference which identifies the streamlet in the blueprint. It is used in a Streamlet for logging and metrics, referring back to the streamlet instance using a name recognizable by the user.
- Definition Classes
- AkkaStreamletLogic
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
implicit final
val
system: ActorSystem
The ActorSystem that will run the Akkastreamlet.
The ActorSystem that will run the Akkastreamlet.
- Definition Classes
- AkkaStreamletLogic
-
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()