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

org.infinispan.atomic.DeltaAware Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.atomic;

/**
 * This interface allows the extraction of {@link Delta}s.
 * 
* Implementations would be closely coupled to a corresponding {@link Delta} implementation, since {@link * Delta#merge(DeltaAware)} would need to know how to recreate this instance of DeltaAware if needed. *
* Implementations of DeltaAware automatically gain the ability to perform fine-grained replication in Infinispan, * since Infinispan's data container is able to detect these types and only serialize and transport Deltas around * the network rather than the entire, serialized object. *
* Using DeltaAware makes sense if your custom object is large in size and often only sees small portions of the * object being updated in a transaction. Implementations would need to be able to track these changes during the * course of a transaction though, to be able to produce a {@link Delta} instance, so this too is a consideration * for implementations. *
* * @author Manik Surtani * @see Delta * @since 4.0 * @deprecated since 9.1 */ @Deprecated public interface DeltaAware { /** * Extracts changes made to implementations, in an efficient format that can easily and cheaply be serialized and * deserialized. This method will only be called once for each changeset as it is assumed that any implementation's * internal changelog is wiped and reset after generating and submitting the delta to the caller. * * @return an instance of Delta */ Delta delta(); /** * Indicate that all deltas collected to date has been extracted (via a call to {@link #delta()}) and can be * discarded. Often used as an optimization if the delta isn't really needed, but the cleaning and resetting of * internal state is desirable. */ void commit(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy