VolD 0.1

Replicator.java

Go to the documentation of this file.
00001 
00002 package de.zib.vold.replication;
00003 
00004 import java.util.List;
00005 import java.util.Set;
00006 
00020 public interface Replicator
00021 {
00028         void insert( List< String > key, Set< String > value );
00029 
00035         void refresh( List< String > key );
00036 
00042         void delete( List< String > key );
00043 }