Uses of Class
org.infinispan.interceptors.base.CommandInterceptor
-
Packages that use CommandInterceptor Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.configuration.cache Cache
configurationorg.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container.org.infinispan.interceptors.base Base interceptors containing common, reusable behavior. -
-
Uses of CommandInterceptor in org.infinispan
Methods in org.infinispan that return types with arguments of type CommandInterceptor Modifier and Type Method Description List<CommandInterceptor>
AdvancedCache. getInterceptorChain()
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead.Methods in org.infinispan with parameters of type CommandInterceptor Modifier and Type Method Description void
AdvancedCache. addInterceptor(CommandInterceptor i, int position)
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead.boolean
AdvancedCache. addInterceptorAfter(CommandInterceptor i, Class<? extends CommandInterceptor> afterInterceptor)
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead.boolean
AdvancedCache. addInterceptorBefore(CommandInterceptor i, Class<? extends CommandInterceptor> beforeInterceptor)
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead.Method parameters in org.infinispan with type arguments of type CommandInterceptor Modifier and Type Method Description boolean
AdvancedCache. addInterceptorAfter(CommandInterceptor i, Class<? extends CommandInterceptor> afterInterceptor)
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead.boolean
AdvancedCache. addInterceptorBefore(CommandInterceptor i, Class<? extends CommandInterceptor> beforeInterceptor)
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead.void
AdvancedCache. removeInterceptor(Class<? extends CommandInterceptor> interceptorType)
Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()
instead. -
Uses of CommandInterceptor in org.infinispan.configuration.cache
Methods in org.infinispan.configuration.cache that return CommandInterceptor Modifier and Type Method Description CommandInterceptor
InterceptorConfiguration. interceptor()
Deprecated.Since 9.0, please useInterceptorConfiguration.asyncInterceptor()
instead.Methods in org.infinispan.configuration.cache that return types with arguments of type CommandInterceptor Modifier and Type Method Description Class<? extends CommandInterceptor>
InterceptorConfiguration. interceptorClass()
Deprecated.Since 9.0, please useInterceptorConfiguration.sequentialInterceptorClass()
instead.Methods in org.infinispan.configuration.cache with parameters of type CommandInterceptor Modifier and Type Method Description InterceptorConfigurationBuilder
InterceptorConfigurationBuilder. interceptor(CommandInterceptor interceptor)
Deprecated.Since 9.0, please useInterceptorConfigurationBuilder.interceptor(AsyncInterceptor)
instead. -
Uses of CommandInterceptor in org.infinispan.interceptors
Methods in org.infinispan.interceptors that return CommandInterceptor Modifier and Type Method Description CommandInterceptor
InterceptorChain. getFirstInChain()
Deprecated.Methods in org.infinispan.interceptors that return types with arguments of type CommandInterceptor Modifier and Type Method Description List<CommandInterceptor>
InterceptorChain. asList()
Deprecated.Returns an unmofiable list with all the interceptors in sequence.List<CommandInterceptor>
InterceptorChain. getInterceptorsWhichExtend(Class<? extends CommandInterceptor> interceptorClass)
Deprecated.Returns all interceptors which extend the given command interceptor.List<CommandInterceptor>
InterceptorChain. getInterceptorsWithClass(Class clazz)
Deprecated.Returns all the interceptors that have the fully qualified name of their class equal with the supplied class name.Methods in org.infinispan.interceptors with parameters of type CommandInterceptor Modifier and Type Method Description void
InterceptorChain. addInterceptor(CommandInterceptor interceptor, int position)
Deprecated.Inserts the given interceptor at the specified position in the chain (o based indexing).boolean
InterceptorChain. addInterceptorAfter(CommandInterceptor toAdd, Class<? extends CommandInterceptor> afterInterceptor)
Deprecated.Adds a new interceptor in list after an interceptor of a given type.boolean
InterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, Class<? extends CommandInterceptor> beforeInterceptor)
Deprecated.Adds a new interceptor in list after an interceptor of a given type.boolean
InterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, Class<? extends CommandInterceptor> beforeInterceptor, boolean isCustom)
Deprecated.void
InterceptorChain. appendInterceptor(CommandInterceptor ci, boolean isCustom)
Deprecated.Appends at the end.boolean
InterceptorChain. containsInstance(CommandInterceptor interceptor)
Deprecated.Checks whether the chain contains the supplied interceptor instance.boolean
InterceptorChain. replaceInterceptor(CommandInterceptor replacingInterceptor, Class<? extends CommandInterceptor> toBeReplacedInterceptorType)
Deprecated.Replaces an existing interceptor of the given type in the interceptor chain with a new interceptor instance passed as parameter.void
InterceptorChain. setFirstInChain(CommandInterceptor interceptor)
Deprecated.Mainly used by unit tests to replace the interceptor chain with the starting point passed in.Method parameters in org.infinispan.interceptors with type arguments of type CommandInterceptor Modifier and Type Method Description boolean
InterceptorChain. addInterceptorAfter(CommandInterceptor toAdd, Class<? extends CommandInterceptor> afterInterceptor)
Deprecated.Adds a new interceptor in list after an interceptor of a given type.boolean
InterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, Class<? extends CommandInterceptor> beforeInterceptor)
Deprecated.Adds a new interceptor in list after an interceptor of a given type.boolean
InterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, Class<? extends CommandInterceptor> beforeInterceptor, boolean isCustom)
Deprecated.boolean
InterceptorChain. containsInterceptorType(Class<? extends CommandInterceptor> interceptorType)
Deprecated.boolean
InterceptorChain. containsInterceptorType(Class<? extends CommandInterceptor> interceptorType, boolean alsoMatchSubClasses)
Deprecated.List<CommandInterceptor>
InterceptorChain. getInterceptorsWhichExtend(Class<? extends CommandInterceptor> interceptorClass)
Deprecated.Returns all interceptors which extend the given command interceptor.void
InterceptorChain. removeInterceptor(Class<? extends CommandInterceptor> clazz)
Deprecated.Removes all the occurences of supplied interceptor type from the chain.boolean
InterceptorChain. replaceInterceptor(CommandInterceptor replacingInterceptor, Class<? extends CommandInterceptor> toBeReplacedInterceptorType)
Deprecated.Replaces an existing interceptor of the given type in the interceptor chain with a new interceptor instance passed as parameter. -
Uses of CommandInterceptor in org.infinispan.interceptors.base
Subclasses of CommandInterceptor in org.infinispan.interceptors.base Modifier and Type Class Description class
BaseCustomInterceptor
Deprecated.Since 9.0, useBaseCustomAsyncInterceptor
instead.class
PrePostProcessingCommandInterceptor
Deprecated.Since 9.0, please extendAsyncInterceptor
instead.Methods in org.infinispan.interceptors.base that return CommandInterceptor Modifier and Type Method Description CommandInterceptor
CommandInterceptor. getNext()
Deprecated.Retrieves the next interceptor in the chain.Methods in org.infinispan.interceptors.base with parameters of type CommandInterceptor Modifier and Type Method Description void
CommandInterceptor. setNext(CommandInterceptor ignored)
Deprecated.Does nothing since 9.0.
-