Class MapKey

    • Method Detail

      • update

        @CheckReturnValue
        public UpdateOp update​(UpdateOp... keyUpdates)
        Creates an update operation, which updates the CRDTs embedded in this map.

        Use the methods on Bucket to execute the update.

      • update

        @CheckReturnValue
        public UpdateOp update​(java.lang.Iterable<UpdateOp> keyUpdates)
        Creates an update operation, which updates the CRDTs embedded in this map.

        Use the methods on Bucket to execute the update.

      • removeKey

        @CheckReturnValue
        public UpdateOp removeKey​(Key<?> key)
        Creates an update operation, which removes a key from the map.

        Use the methods on Bucket to execute the update.

      • removeKeys

        @CheckReturnValue
        public UpdateOp removeKeys​(Key<?>... keys)
        Creates an update operation, which removes keys from the map.

        Use the methods on Bucket to execute the update.

      • removeKeys

        @CheckReturnValue
        public UpdateOp removeKeys​(java.lang.Iterable<? extends Key<?>> keys)
        Creates an update operation, which removes keys from the map.

        Use the methods on Bucket to execute the update.