commit | ce87610ea77b974843b20263e6308319ec4e5b5c | [log] [tgz] |
---|---|---|
author | alexander.behm <alexander.behm@123451ca-8445-de46-9d55-352943316053> | Fri Sep 24 03:08:27 2010 +0000 |
committer | alexander.behm <alexander.behm@123451ca-8445-de46-9d55-352943316053> | Fri Sep 24 03:08:27 2010 +0000 |
tree | d4ef8fc082b6121d511ece84edbe0fea0a0d68b2 | |
parent | 4ecf9195cb279aea326880593ea5bf5dd5e89525 [diff] |
added unmapName() method git-svn-id: https://hyracks.googlecode.com/svn/trunk/hyracks@131 123451ca-8445-de46-9d55-352943316053
diff --git a/hyracks-storage-common/src/main/java/edu/uci/ics/hyracks/storage/common/file/IFileMappingProvider.java b/hyracks-storage-common/src/main/java/edu/uci/ics/hyracks/storage/common/file/IFileMappingProvider.java index 74370c8..76f0ab8 100644 --- a/hyracks-storage-common/src/main/java/edu/uci/ics/hyracks/storage/common/file/IFileMappingProvider.java +++ b/hyracks-storage-common/src/main/java/edu/uci/ics/hyracks/storage/common/file/IFileMappingProvider.java
@@ -27,4 +27,14 @@ * @return The file id on a successful lookup, null if unsuccessful. */ public Integer mapNameToFileId(String name, boolean create); + + /** + * Remove the mapping from a file name to an integer id. + * + * @param name + * - Name of the file + * + * @return void + */ + public void unmapName(String name); } \ No newline at end of file