org.ehcache.loaderwriter.writebehind.operations
Interface OperationsFilter<T>

All Known Implementing Classes:
CoalesceKeysFilter

public interface OperationsFilter<T>

An interface for implementing a filter for operations before they are processed. By filtering the outstanding operations it's for example possible to remove scheduled work before it's actually executed.


Method Summary
 void filter(java.util.List<T> operations)
          Filter the operations of a write behind queue.
 

Method Detail

filter

void filter(java.util.List<T> operations)
Filter the operations of a write behind queue.

Parameters:
operations - the operations to filter