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

    Modifier and Type
    Method
    Description
    void
    add(String correlationKey, T object)
    Adds new object with correlation key.
    remove(String correlationKey)
    Removes object with correlation key.
  • Method Details

    • add

      void add(String correlationKey, T object)
      Adds new object with correlation key.
      Parameters:
      correlationKey -
      object -
    • remove

      T remove(String correlationKey)
      Removes object with correlation key.
      Parameters:
      correlationKey -
      Returns: