Interface GlobalMap

  • All Superinterfaces:
    java.lang.AutoCloseable, java.io.Closeable

    @Deprecated
    public interface GlobalMap
    extends java.io.Closeable
    Deprecated.
    This API should no longer be used and is scheduled for removal in a future release
    A global data structure with semantics similar to Map except that put()ting in a null value removes the entry from the map. There is no interface for getting the contents of a GlobalMap. The GlobalMapListener is used to listen for changes to the map.
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void put​(java.lang.String key, java.lang.String value)
      Deprecated.
      Update a key to value.
      • Methods inherited from interface java.io.Closeable

        close
    • Method Detail

      • put

        void put​(java.lang.String key,
                 java.lang.String value)
          throws AttivioException
        Deprecated.
        Update a key to value.

        If value is null the key is removed from the map.

        Throws:
        AttivioException