Uses of Interface
org.apache.storm.testing.TestJob
-
Packages that use TestJob Package Description org.apache.storm -
-
Uses of TestJob in org.apache.storm
Methods in org.apache.storm with parameters of type TestJob Modifier and Type Method Description static void
Testing. withLocalCluster(MkClusterParam param, TestJob code)
Deprecated.use ``` try (LocalCluster cluster = new LocalCluster.Builder()....build()) { ...static void
Testing. withLocalCluster(TestJob code)
Deprecated.use ``` try (LocalCluster cluster = new LocalCluster()) { ...static void
Testing. withSimulatedTimeLocalCluster(MkClusterParam param, TestJob code)
Deprecated.use ``` try (LocalCluster cluster = new LocalCluster.Builder().withSimulatedTime()....build()) { ...static void
Testing. withSimulatedTimeLocalCluster(TestJob code)
Deprecated.use ``` try (LocalCluster cluster = new LocalCluster.Builder().withSimulatedTime().build()) { ...static void
Testing. withTrackedCluster(MkClusterParam param, TestJob code)
Deprecated.use ``` try (LocalCluster cluster = new LocalCluster.Builder().withTracked()....build()) { ...static void
Testing. withTrackedCluster(TestJob code)
Deprecated.use ``` try (LocalCluster cluster = new LocalCluster.Builder().withTracked().build()) { ...
-