Interface ChangeRecordUpdater<K,V>
-
public interface ChangeRecordUpdater<K,V>ChangeRecordUpdater allows to update the givenChangeRecordwhile processing theFederatedChangeEvent. Users can implement custom interceptors by extendingAbstractFederatedInterceptorand returning a ChangeRecordUpdater inAbstractFederatedInterceptor.getChangeRecordUpdater()- Author:
- cl 2014.06.09
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupdate(String sParticipant, String sCacheName, ChangeRecord<K,V> record)Update theChangeRecord.
-
-
-
Method Detail
-
update
void update(String sParticipant, String sCacheName, ChangeRecord<K,V> record)
Update theChangeRecord.- Parameters:
sParticipant- the participant name of the destinationsCacheName- the cache namerecord- the ChangeRecord which includes the details about the change
-
-