Package io.streamthoughts.azkarra.api
Class Executed
- java.lang.Object
-
- io.streamthoughts.azkarra.api.Executed
-
- Direct Known Subclasses:
InternalExecuted
public class Executed extends Object
Executed class is used to describe aTopology
instance to be executed.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Executed
as(String name)
Static helper that can be used to creates a newExecuted
instance with the specified streams name.static Executed
as(String name, String description)
Static helper that can be used to creates a newExecuted
instance with the specified streams name and description.static Executed
with(Conf conf)
Static helper that can be used to creates a newExecuted
instance with the specified streams name and configuration.Executed
withConfig(Conf config)
Executed
withDescription(String description)
Executed
withName(String name)
-
-
-
Method Detail
-
as
public static Executed as(String name)
Static helper that can be used to creates a newExecuted
instance with the specified streams name.- Parameters:
name
- the name of the streams application.- Returns:
- a new
StreamsExecutionEnvironment
instance.
-
as
public static Executed as(String name, String description)
Static helper that can be used to creates a newExecuted
instance with the specified streams name and description.- Parameters:
name
- the name of the streams application.description
- the description of the streams application.- Returns:
- a new
StreamsExecutionEnvironment
instance.
-
with
public static Executed with(Conf conf)
Static helper that can be used to creates a newExecuted
instance with the specified streams name and configuration.- Parameters:
conf
- the configuration.- Returns:
- a new
StreamsExecutionEnvironment
instance.
-
-