VolD 0.1

PartitionedDirectory.java

Go to the documentation of this file.
00001 
00002 package de.zib.vold.backend;
00003 
00004 import java.util.List;
00005 import java.util.Map;
00006 
00029 public interface PartitionedDirectory
00030 {
00040         void insert( int partition, List< String > key, List< String > value );
00041 
00048         void delete( int partition, List< String > key );
00049 
00056         List< String > lookup( int partition, List< String > key );
00057 
00066         Map< List< String >, List< String > > prefixlookup( int partition, List< String > prefix );
00067 }