use of org.apache.apex.malhar.lib.state.spillable.inmem.InMemSpillableStateStore in project apex-malhar by apache.
the class SpillableArrayListImplTest method simpleAddGetAndSetTest3.
@Test
public void simpleAddGetAndSetTest3() {
InMemSpillableStateStore store = new InMemSpillableStateStore();
simpleAddGetAndSetTest3Helper(store);
}
use of org.apache.apex.malhar.lib.state.spillable.inmem.InMemSpillableStateStore in project apex-malhar by apache.
the class SpillableSetImplTest method simpleAddGetAndSetTest.
@Test
public void simpleAddGetAndSetTest() {
InMemSpillableStateStore store = new InMemSpillableStateStore();
simpleAddGetAndSetTestHelper(store);
}
use of org.apache.apex.malhar.lib.state.spillable.inmem.InMemSpillableStateStore in project apex-malhar by apache.
the class SpillableMapImplTest method setup.
private void setup(String opt) {
if (opt.equals("InMem")) {
store = new InMemSpillableStateStore();
te = null;
} else if (opt.equals("ManagedState")) {
store = testMeta.store;
te = null;
} else {
store = testMeta.timeStore;
te = TE;
}
}
use of org.apache.apex.malhar.lib.state.spillable.inmem.InMemSpillableStateStore in project apex-malhar by apache.
the class SpillableSetMultimapImplTest method simpleMultiKeyTest.
@Test
public void simpleMultiKeyTest() {
InMemSpillableStateStore store = new InMemSpillableStateStore();
simpleMultiKeyTestHelper(store);
}
Aggregations