Package | Description |
---|---|
org.apache.storm |
Modifier and Type | Method and 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()) {
...
}
|
Copyright © 2022 The Apache Software Foundation. All rights reserved.