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

org.infinispan.commands.package-info Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
/**
 * Commands that operate on the cache, either locally or remotely.  This package contains the entire command object
 * model including interfaces and abstract classes.  Your starting point is probably {@link ReplicableCommand}, which
 * represents a command that can be used in RPC calls.
 * 

* A sub-interface, {@link VisitableCommand}, represents commands that can be visited using the visitor pattern. * Most commands that relate to public {@link Cache} API methods tend to be {@link VisitableCommand}s, and hence the * importance of this interface. *

* The {@link Visitor} interface is capable of visiting {@link VisitableCommand}s, and a useful abstract implementation * of {@link Visitor} is {@link org.infinispan.interceptors.base.CommandInterceptor}, which allows you to create * interceptors that intercept command invocations adding aspects of behavior to a given invocation. * * @author Manik Surtani * @since 4.0 */ package org.infinispan.commands;





© 2015 - 2025 Weber Informatics LLC | Privacy Policy