Uses of Interface
org.apache.storm.testing.TestJob
-
Uses of TestJob in org.apache.storm
Modifier and TypeMethodDescriptionstatic 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()) { ... } ```