Interface EnvironmentProvider
-
- All Known Implementing Classes:
BaseEnvironmentProvider
,BeamEnvironment
,ClassLoaderEnvironment
,ContextualEnvironment
,DecoratingEnvironmentProvider
,DirectRunnerEnvironment
,FlinkRunnerEnvironment
,SparkRunnerEnvironment
public interface EnvironmentProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoCloseable
start(Class<?> clazz, Annotation[] annotations)
Starts the environment represented by this implementation.
-
-
-
Method Detail
-
start
AutoCloseable start(Class<?> clazz, Annotation[] annotations)
Starts the environment represented by this implementation.- Parameters:
clazz
- the test class.annotations
- the current annotations which can own environment configuration.- Returns:
- a closeable to release current environment.
-
-