org.infinispan.notifications.cachelistener.annotation
Annotation Type DataRehashed


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface DataRehashed

This annotation should be used on methods that need to be notified when a rehash starts or ends. This is only fired in a Configuration.CacheMode#DIST_SYNC or Configuration.CacheMode#DIST_ASYNC configured cache.

Methods annotated with this annotation should accept a single parameter, a DataRehashedEvent otherwise a IncorrectListenerException will be thrown when registering your listener.

Note that methods marked with this annotation will be fired before and after rehashing takes place, i.e., your method will be called twice, with Event.isPre() being set to true as well as false.

Any exceptions thrown by the listener will abort the call. Any other listeners not yet called will not be called, and any transactions in progress will be rolled back.

Since:
5.0
Author:
Manik Surtani
See Also:
Listener


-->

Copyright © 2011 JBoss, a division of Red Hat. All Rights Reserved.