Annotation Interface Interceptor
Interceptor is an annotation that can be applied to
EventInterceptor
implementations.
The annotation allows the specification of an identifier and
an order.
When used in combination with the cache configuration the annotation
members identifier()
and order()
can be overridden by
the corresponding XML elements.
- Since:
- Coherence 12.1.2
- Author:
- hr 2011.10.07
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
This enum provides an indication of whether theEventInterceptor
should request to be first in the chain ofEventInterceptor
s, hence have a HIGH priority. -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionDeprecated.Deprecated.useEntryEvents
annotation insteadDeprecated.useEntryProcessorEvents
annotation insteadDeprecated.useFederatedChangeEvents
annotation insteadDeprecated.useFederatedConnectionEvents
annotation insteadDeprecated.useFederatedPartitionEvents
annotation insteadA unique identifier for the interceptor.Iff a value ofInterceptor.Order.HIGH
is provided this interceptor will request to be the first in the chain of interceptors.Deprecated.useTransactionEvents
annotation insteadDeprecated.useTransferEvents
annotation insteadDeprecated.useUnsolicitedCommitEvents
annotation instead
-
Element Details
-
identifier
String identifierA unique identifier for the interceptor.- Returns:
- unique identifier for the interceptor
- Default:
""
-
entryEvents
Deprecated.useEntryEvents
annotation insteadThis element specifies all types ofEntryEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
EntryEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
entryProcessorEvents
Deprecated.useEntryProcessorEvents
annotation insteadThis element specifies all types ofEntryProcessorEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
EntryProcessorEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
federatedChangeEvents
Deprecated.useFederatedChangeEvents
annotation insteadThis element specifies all types ofFederatedChangeEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
FederatedChangeEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
federatedConnectionEvents
Deprecated.useFederatedConnectionEvents
annotation insteadThis element specifies all types ofFederatedConnectionEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
FederatedConnectionEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
federatedPartitionEvents
Deprecated.useFederatedPartitionEvents
annotation insteadThis element specifies all types ofFederatedPartitionEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
FederatedPartitionEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
transferEvents
Deprecated.useTransferEvents
annotation insteadThis element specifies all types ofTransferEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
TransferEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
transactionEvents
Deprecated.useTransactionEvents
annotation insteadThis element specifies all types ofTransactionEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
TransactionEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
unsolicitedEvents
Deprecated.useUnsolicitedCommitEvents
annotation insteadThis element specifies all types ofUnsolicitedCommitEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
UnsolicitedCommitEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
cacheLifecycleEvents
Deprecated.useCacheLifecycleEvents
annotation insteadThis element specifies all types ofCacheLifecycleEvent.Type
s the interceptor would like to be invoked on.- Returns:
- all
CacheLifecycleEvent.Type
s theEventInterceptor
would like to receive notifications on
- Default:
{}
-
order
Interceptor.Order orderIff a value ofInterceptor.Order.HIGH
is provided this interceptor will request to be the first in the chain of interceptors.- Returns:
- whether this
EventInterceptor
should be first (Interceptor.Order.HIGH
) in the chain ofEventInterceptor
s
- Default:
LOW
-
CacheLifecycleEvents
annotation instead