| org.jboss.cache.invalidation.BridgeInvalidationSubscription
BridgeInvalidationSubscription | public interface BridgeInvalidationSubscription (Code) | | Every bridge subscribing to a InvalidationManager has access to this interface that
it can used to invalidate messages on the local IM.
See Also: InvalidationManagerMBean See Also: InvalidationBridgeListener version: $Revision: 57209 $ version: Revisions: version: 21 septembre 2002 Sacha Labourey: version: version: - First implementation
version:
|
batchInvalidate | public void batchInvalidate(BatchInvalidation[] invalidations)(Code) | | Invalidates a set of keys in a set of InvalidationGroup. It is the responsability
of the InvalidationManager to determine which IG are actually present i.e. the
bridge may transmit BatchInvalidation for IG that are not present locally. The
IM will simply ignore them.
Parameters: invalidations - Invalidations to be performed on the local IM instance |
invalidate | public void invalidate(String invalidationGroupName, Serializable key)(Code) | | Used to invalidate a single key in a given InvalidationGroup
Parameters: invalidationGroupName - Name of the InvalidationGroup for which this invalidation is targeted Parameters: key - Key to be invalidated |
invalidate | public void invalidate(String invalidationGroupName, Serializable[] keys)(Code) | | Invalidate a set of keys in a give InvalidationGRoup
Parameters: invalidationGroupName - Name of the InvalidationGroup to which is targeted this invalidation Parameters: keys - Keys to be invalidated |
invalidateAll | public void invalidateAll(String groupName)(Code) | | Invalidate all the entries in the specified group
Parameters: groupName - |
unregister | public void unregister()(Code) | | Unregister the current bridge form the InvalidationManager
|
|
|