Class SnapshottableMap<T>
- java.lang.Object
-
- org.apache.storm.trident.state.map.SnapshottableMap<T>
-
- All Implemented Interfaces:
MapState<T>
,ReadOnlyMapState<T>
,ReadOnlySnapshottable<T>
,Snapshottable<T>
,State
public class SnapshottableMap<T> extends Object implements MapState<T>, Snapshottable<T>
-
-
Constructor Summary
Constructors Constructor Description SnapshottableMap(MapState<T> delegate, List<Object> snapshotKey)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beginCommit(Long txid)
void
commit(Long txid)
T
get()
List<T>
multiGet(List<List<Object>> keys)
void
multiPut(List<List<Object>> keys, List<T> vals)
List<T>
multiUpdate(List<List<Object>> keys, List<ValueUpdater> updaters)
void
set(T o)
T
update(ValueUpdater updater)
-
-
-
Method Detail
-
multiGet
public List<T> multiGet(List<List<Object>> keys)
- Specified by:
multiGet
in interfaceReadOnlyMapState<T>
-
multiUpdate
public List<T> multiUpdate(List<List<Object>> keys, List<ValueUpdater> updaters)
- Specified by:
multiUpdate
in interfaceMapState<T>
-
beginCommit
public void beginCommit(Long txid)
- Specified by:
beginCommit
in interfaceState
-
get
public T get()
- Specified by:
get
in interfaceReadOnlySnapshottable<T>
-
update
public T update(ValueUpdater updater)
- Specified by:
update
in interfaceSnapshottable<T>
-
set
public void set(T o)
- Specified by:
set
in interfaceSnapshottable<T>
-
-