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 Cacheconfigurationorg.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 java.util.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 voidAdvancedCache. addInterceptor(CommandInterceptor i, int position)Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()instead.booleanAdvancedCache. addInterceptorAfter(CommandInterceptor i, java.lang.Class<? extends CommandInterceptor> afterInterceptor)Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()instead.booleanAdvancedCache. addInterceptorBefore(CommandInterceptor i, java.lang.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 booleanAdvancedCache. addInterceptorAfter(CommandInterceptor i, java.lang.Class<? extends CommandInterceptor> afterInterceptor)Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()instead.booleanAdvancedCache. addInterceptorBefore(CommandInterceptor i, java.lang.Class<? extends CommandInterceptor> beforeInterceptor)Deprecated.Since 9.0, useAdvancedCache.getAsyncInterceptorChain()instead.voidAdvancedCache. removeInterceptor(java.lang.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 CommandInterceptorInterceptorConfiguration. 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 java.lang.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 InterceptorConfigurationBuilderInterceptorConfigurationBuilder. 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 CommandInterceptorInterceptorChain. getFirstInChain()Deprecated.Methods in org.infinispan.interceptors that return types with arguments of type CommandInterceptor Modifier and Type Method Description java.util.List<CommandInterceptor>InterceptorChain. asList()Deprecated.Returns an unmofiable list with all the interceptors in sequence.java.util.List<CommandInterceptor>InterceptorChain. getInterceptorsWhichExtend(java.lang.Class<? extends CommandInterceptor> interceptorClass)Deprecated.Returns all interceptors which extend the given command interceptor.java.util.List<CommandInterceptor>InterceptorChain. getInterceptorsWithClass(java.lang.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 voidInterceptorChain. addInterceptor(CommandInterceptor interceptor, int position)Deprecated.Inserts the given interceptor at the specified position in the chain (o based indexing).booleanInterceptorChain. addInterceptorAfter(CommandInterceptor toAdd, java.lang.Class<? extends CommandInterceptor> afterInterceptor)Deprecated.Adds a new interceptor in list after an interceptor of a given type.booleanInterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, java.lang.Class<? extends CommandInterceptor> beforeInterceptor)Deprecated.Adds a new interceptor in list after an interceptor of a given type.booleanInterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, java.lang.Class<? extends CommandInterceptor> beforeInterceptor, boolean isCustom)Deprecated.voidInterceptorChain. appendInterceptor(CommandInterceptor ci, boolean isCustom)Deprecated.Appends at the end.booleanInterceptorChain. containsInstance(CommandInterceptor interceptor)Deprecated.Checks whether the chain contains the supplied interceptor instance.booleanInterceptorChain. replaceInterceptor(CommandInterceptor replacingInterceptor, java.lang.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.voidInterceptorChain. 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 booleanInterceptorChain. addInterceptorAfter(CommandInterceptor toAdd, java.lang.Class<? extends CommandInterceptor> afterInterceptor)Deprecated.Adds a new interceptor in list after an interceptor of a given type.booleanInterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, java.lang.Class<? extends CommandInterceptor> beforeInterceptor)Deprecated.Adds a new interceptor in list after an interceptor of a given type.booleanInterceptorChain. addInterceptorBefore(CommandInterceptor toAdd, java.lang.Class<? extends CommandInterceptor> beforeInterceptor, boolean isCustom)Deprecated.booleanInterceptorChain. containsInterceptorType(java.lang.Class<? extends CommandInterceptor> interceptorType)Deprecated.booleanInterceptorChain. containsInterceptorType(java.lang.Class<? extends CommandInterceptor> interceptorType, boolean alsoMatchSubClasses)Deprecated.java.util.List<CommandInterceptor>InterceptorChain. getInterceptorsWhichExtend(java.lang.Class<? extends CommandInterceptor> interceptorClass)Deprecated.Returns all interceptors which extend the given command interceptor.voidInterceptorChain. removeInterceptor(java.lang.Class<? extends CommandInterceptor> clazz)Deprecated.Removes all the occurences of supplied interceptor type from the chain.booleanInterceptorChain. replaceInterceptor(CommandInterceptor replacingInterceptor, java.lang.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 classBaseCustomInterceptorDeprecated.Since 9.0, useBaseCustomAsyncInterceptorinstead.classPrePostProcessingCommandInterceptorDeprecated.Since 9.0, please extendAsyncInterceptorinstead.Methods in org.infinispan.interceptors.base that return CommandInterceptor Modifier and Type Method Description CommandInterceptorCommandInterceptor. 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 voidCommandInterceptor. setNext(CommandInterceptor ignored)Deprecated.Does nothing since 9.0.
-