Package | Description |
---|---|
org.infinispan.configuration.cache |
Cache configuration |
Modifier and Type | Method and Description |
---|---|
InterceptorConfigurationBuilder |
CustomInterceptorsConfigurationBuilder.addInterceptor()
Adds a new custom interceptor definition, to be added to the cache when the cache is started.
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.addProperty(String key,
String value) |
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.after(Class<? extends AsyncInterceptor> after)
Dictates that the custom interceptor appears immediately after the specified interceptor.
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.before(Class<? extends AsyncInterceptor> before)
Dictates that the custom interceptor appears immediately before the specified interceptor.
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.clearProperties()
Clears the interceptor properties
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.index(int i)
Specifies a position in the interceptor chain to place the new interceptor.
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.interceptor(AsyncInterceptor interceptor)
An instance of the new custom interceptor to add to the configuration.
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.interceptor(CommandInterceptor interceptor)
Deprecated.
Since 9.0, please use
interceptor(AsyncInterceptor) instead. |
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.interceptorClass(Class<? extends AsyncInterceptor> interceptorClass)
Class of the new custom interceptor to add to the configuration.
|
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.position(InterceptorConfiguration.Position p)
Specifies a position, denoted by the
InterceptorConfiguration.Position enumeration, where to place the new interceptor. |
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.read(InterceptorConfiguration template) |
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.removeProperty(String key) |
InterceptorConfigurationBuilder |
InterceptorConfigurationBuilder.withProperties(Properties properties)
Sets interceptor properties
|
Copyright © 2017 JBoss, a division of Red Hat. All rights reserved.