Class TransactionStore.Change

  • Enclosing class:
    TransactionStore

    public static class TransactionStore.Change
    extends java.lang.Object
    A change in a map.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.Object key
      The key.
      java.lang.String mapName
      The name of the map where the change occurred.
      java.lang.Object value
      The value.
    • Constructor Summary

      Constructors 
      Constructor Description
      Change​(java.lang.String mapName, java.lang.Object key, java.lang.Object value)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • mapName

        public final java.lang.String mapName
        The name of the map where the change occurred.
      • key

        public final java.lang.Object key
        The key.
      • value

        public final java.lang.Object value
        The value.
    • Constructor Detail

      • Change

        public Change​(java.lang.String mapName,
                      java.lang.Object key,
                      java.lang.Object value)