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

com.tangosol.net.events.partition.UnsolicitedCommitEvent Maven / Gradle / Ivy

There is a newer version: 24.09
Show newest version
/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.net.events.partition;

import com.tangosol.util.BinaryEntry;

import java.util.Set;

/**
 * An UnsolicitedCommitEvent captures changes pertaining to all observed
 * mutations performed against caches that were not directly caused (solicited)
 * by the partitioned service.
 * 

* These events may be due to changes made internally by the backing map, such * as eviction, or referrers of the backing map causing changes. * * @author hr/gg 2014.04.02 * @since Coherence 12.2.1 */ public interface UnsolicitedCommitEvent extends Event { /** * A set of {@link BinaryEntry entries} observed to have been modified * without being caused by the partitioned service. * * @return a set of entries observed to have been modified without being * caused by the partitioned service */ public Set getEntrySet(); // ----- inner class: Type ---------------------------------------------- /** * The UnsolicitedCommitEvent types. */ public static enum Type { /** * A COMMITTED event is the only event raised by the {@link UnsolicitedCommitEvent} * as the mutation has already occurred to the underlying backing map(s). * This event will contain all modified entries which may span multiple * backing maps. The BinaryEntry instances passed for this event type * are immutable. */ COMMITTED } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy