Uses of Interface
io.streamthoughts.azkarra.api.StreamsExecutionEnvironment
-
-
Uses of StreamsExecutionEnvironment in io.streamthoughts.azkarra.api
Methods in io.streamthoughts.azkarra.api that return StreamsExecutionEnvironment Modifier and Type Method Description StreamsExecutionEnvironment
StreamsExecutionEnvironment. addFallbackConfiguration(Conf settings)
Adds streamsConfig that will be used in fallback if not present in defined environment streamsConfig.StreamsExecutionEnvironment
StreamsExecutionEnvironment. addGlobalStateListener(org.apache.kafka.streams.processor.StateRestoreListener listener)
Adds aStateRestoreListener
instance that will set to allKafkaStreams
instance created in thisStreamsExecutionEnvironment
.StreamsExecutionEnvironment
StreamsExecutionEnvironment. addStateListener(org.apache.kafka.streams.KafkaStreams.StateListener listener)
Adds aKafkaStreams.StateListener
instance that will set to allKafkaStreams
instance created in thisStreamsExecutionEnvironment
.StreamsExecutionEnvironment
AzkarraContext. defaultExecutionEnvironment()
Gets the defaultStreamsExecutionEnvironment
.StreamsExecutionEnvironment
AzkarraContext. getEnvironmentForNameOrCreate(String envName)
Gets theStreamsExecutionEnvironment
for the specified name or create a new one.StreamsExecutionEnvironment
StreamsExecutionEnvironment. setApplicationIdBuilder(Supplier<ApplicationIdBuilder> supplier)
Sets theApplicationIdBuilder
that should be used for building streamsapplication.id
.StreamsExecutionEnvironment
StreamsExecutionEnvironment. setConfiguration(Conf configuration)
Sets this environment configuration.StreamsExecutionEnvironment
StreamsExecutionEnvironment. setRocksDBConfig(RocksDBConfig settings)
Sets theRocksDBConfig
streamsConfig used by topology persistent stores.StreamsExecutionEnvironment
StreamsExecutionEnvironment. setWaitForTopicsToBeCreated(boolean waitForTopicToBeCreated)
Sets if the streams instances should wait for topics source to be created before starting.Methods in io.streamthoughts.azkarra.api that return types with arguments of type StreamsExecutionEnvironment Modifier and Type Method Description List<StreamsExecutionEnvironment>
AzkarraContext. environments()
Gets allStreamsExecutionEnvironment
registered to this context.Methods in io.streamthoughts.azkarra.api with parameters of type StreamsExecutionEnvironment Modifier and Type Method Description AzkarraContext
AzkarraContext. addExecutionEnvironment(StreamsExecutionEnvironment environment)
Adds theStreamsExecutionEnvironment
to this context.void
StreamsExecutionEnvironmentAware. setExecutionEnvironment(StreamsExecutionEnvironment environment)
Set theStreamsExecutionEnvironment
. -
Uses of StreamsExecutionEnvironment in io.streamthoughts.azkarra.runtime.context
Methods in io.streamthoughts.azkarra.runtime.context that return StreamsExecutionEnvironment Modifier and Type Method Description StreamsExecutionEnvironment
DefaultAzkarraContext. defaultExecutionEnvironment()
Gets the defaultStreamsExecutionEnvironment
.StreamsExecutionEnvironment
DefaultAzkarraContext. getEnvironmentForNameOrCreate(String envName)
Gets theStreamsExecutionEnvironment
for the specified name or create a new one.Methods in io.streamthoughts.azkarra.runtime.context that return types with arguments of type StreamsExecutionEnvironment Modifier and Type Method Description List<StreamsExecutionEnvironment>
DefaultAzkarraContext. environments()
Gets allStreamsExecutionEnvironment
registered to this context.Methods in io.streamthoughts.azkarra.runtime.context with parameters of type StreamsExecutionEnvironment Modifier and Type Method Description AzkarraContext
DefaultAzkarraContext. addExecutionEnvironment(StreamsExecutionEnvironment env)
Adds theStreamsExecutionEnvironment
to this context. -
Uses of StreamsExecutionEnvironment in io.streamthoughts.azkarra.runtime.env
Classes in io.streamthoughts.azkarra.runtime.env that implement StreamsExecutionEnvironment Modifier and Type Class Description class
DefaultStreamsExecutionEnvironment
The defaultStreamsExecutionEnvironment
implementation.Methods in io.streamthoughts.azkarra.runtime.env that return StreamsExecutionEnvironment Modifier and Type Method Description StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. addFallbackConfiguration(Conf fallback)
Adds streamsConfig that will be used in fallback if not present in defined environment streamsConfig.StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. addGlobalStateListener(org.apache.kafka.streams.processor.StateRestoreListener listener)
Adds aStateRestoreListener
instance that will set to allKafkaStreams
instance created in thisStreamsExecutionEnvironment
.StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. addStateListener(org.apache.kafka.streams.KafkaStreams.StateListener listener)
Adds aKafkaStreams.StateListener
instance that will set to allKafkaStreams
instance created in thisStreamsExecutionEnvironment
.static StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. create()
Static helper that can be used to creates a newStreamsExecutionEnvironment
instance using the empty configuration and a generated unique name.static StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. create(Conf settings)
Static helper that can be used to creates a newStreamsExecutionEnvironment
instance from the specifiedConf
and using a generated env name.static StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. create(Conf settings, String envName)
Static helper that can be used to creates a newStreamsExecutionEnvironment
instance from the specifiedConf
and env name.static StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. create(String envName)
Static helper that can be used to creates a newStreamsExecutionEnvironment
instance from the specified env name and using the configuration.StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. setApplicationIdBuilder(Supplier<ApplicationIdBuilder> supplier)
Sets theApplicationIdBuilder
that should be used for building streamsapplication.id
.StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. setConfiguration(Conf configuration)
Sets this environment configuration.StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. setRocksDBConfig(RocksDBConfig rocksDBConfig)
Sets theRocksDBConfig
streamsConfig used by topology persistent stores.StreamsExecutionEnvironment
DefaultStreamsExecutionEnvironment. setWaitForTopicsToBeCreated(boolean waitForTopicToBeCreated)
Sets if the streams instances should wait for topics source to be created before starting. -
Uses of StreamsExecutionEnvironment in io.streamthoughts.azkarra.runtime.streams
Methods in io.streamthoughts.azkarra.runtime.streams with parameters of type StreamsExecutionEnvironment Modifier and Type Method Description void
DefaultApplicationIdBuilder. setExecutionEnvironment(StreamsExecutionEnvironment environment)
Set theStreamsExecutionEnvironment
. -
Uses of StreamsExecutionEnvironment in io.streamthoughts.azkarra.runtime.streams.topology
Constructors in io.streamthoughts.azkarra.runtime.streams.topology with parameters of type StreamsExecutionEnvironment Constructor Description TopologyFactory(StreamsExecutionEnvironment environment)
Creates a newTopologyFactory
instance.
-