Interface ObjectStore<T>
-
public interface ObjectStore<T>Interface defines add and remove object methods for storing data.- Since:
- 2.1
- Author:
- Christoph Deppisch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(String correlationKey, T object)Adds new object with correlation key.Tremove(String correlationKey)Removes object with correlation key.
-