All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.map.EntryProcessor Maven / Gradle / Ivy

There is a newer version: 5.0-BETA-1
Show newest version
/*
 * Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.map;

import com.hazelcast.core.ReadOnly;
import com.hazelcast.internal.serialization.BinaryInterface;

import javax.annotation.Nullable;
import java.io.Serializable;
import java.util.Map;
import java.util.Map.Entry;

/**
 * An EntryProcessor processes a {@link java.util.Map.Entry}.
 * The {@code EntryProcessor}'s {@link #process(Entry)} method is executed atomically.
 * This obviates the need to explicitly lock as would be required with a {@link java.util.concurrent.ExecutorService}.
 * 

* Performance can be very high as the data is not moved off the Member partition. This avoids network cost and, if * the storage format is {@link com.hazelcast.config.InMemoryFormat#OBJECT}, then there is no de-serialization or serialization * cost. *

* EntryProcessors execute on the partition thread in a member. Multiple operations on the same partition are queued * and executed sequentially. *

* While executing partition migrations are not allowed. Any migrations are queued on the partition thread. *

* An EntryProcessor may not be re-entrant i.e. it may not access the same {@link Map}. Limitation: you can only access * data on the same partition. *

* Note that to modify an entry by using EntryProcessors you should explicitly call the * {@link java.util.Map.Entry#setValue} method of {@link java.util.Map.Entry} such as: *

 * 
 * {@literal}Override
 *     public Object process(Map.Entry entry) {
 *        Value value = entry.getValue();
 *        // process and modify value
 *        // ...
 *        entry.setValue(value);
 *        return result;
 *    }
 * 
 * 
* otherwise EntryProcessor does not guarantee that it will modify the entry. *

* EntryProcessor instances can be shared between threads. If an EntryProcessor instance contains mutable state, proper * concurrency control needs to be provided to coordinate access to mutable state. Another option is to rely * on {@code ThreadLocal}s. *

* Since Hazelcast 4.1, an instance of {@link ExtendedMapEntry} is provided as argument in {@link #process(Entry)} * method: *

 * {@code
 * class IncrementWithOptionalTtl implements EntryProcessor {
 *     private final long ttlSeconds;
 *
 *     public IncrementWithOptionalTtl(long ttlSeconds) {
 *         this.ttlSeconds = ttlSeconds;
 *     }
 *
 *     @Override
 *     public Void process(Map.Entry e) {
 *         ExtendedMapEntry entry = (ExtendedMapEntry) e;
 *         int newValue = entry.getValue() + 1;
 *         if (ttlSeconds > 0) {
 *             entry.setValue(newValue, ttlSeconds, TimeUnit.SECONDS);
 *         } else {
 *             entry.setValue(newValue);
 *         }
 *         return null;
 *     }
 * }
 * }
 * 
* * @param map entry key type * @param map entry value type * @param return type * * @see ExtendedMapEntry */ @BinaryInterface @FunctionalInterface public interface EntryProcessor extends Serializable { /** * Process the entry without worrying about concurrency. *

* Note that to modify an entry by using an EntryProcessor you should * explicitly call {@link Entry#setValue setValue()} method of {@link Entry}, * for example: *

     *       {@literal @}Override
     *        public Object process(Map.Entry entry) {
     *          Value value = entry.getValue();
     *          // process and modify value
     *          // ...
     *          entry.setValue(value);
     *          return result;
     *        }
     * 
* otherwise the {@code EntryProcessor} does not guarantee to modify the entry. *

* The entry's value will be {@code null}, if the entry for the key doesn't * exist. You can create new mapping by setting a non-null value or remove * existing mapping entry by setting the value to {@code null}. * * @param entry entry to be processed * @return a result that will be returned from the method taking the * {@link EntryProcessor}, such as * {@link IMap#executeOnKey(Object, EntryProcessor) IMap.executeOnKey()} */ R process(Entry entry); /** * Get the entry processor to be applied to backup entries. *

* In case of a readonly execution, {@code null} can be returned to indicate * that no backups should be made. *

* Note that there is a possibility which an {@code EntryProcessor} can see * that a key exists but its backup processor may not find it at run time due * to an unsent backup of a previous operation (e.g. a previous put). In * those situations, Hazelcast internally/eventually will sync those owner * and backup partitions so you will not lose any data. * When coding an backup entry processor, you should take that case into * account, otherwise {@link java.lang.NullPointerException}s can be seen * since {@link java.util.Map.Entry#getValue()} may return null. * * @return the backup entry processor */ default @Nullable EntryProcessor getBackupProcessor() { if (this instanceof ReadOnly) { return null; } return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy