diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-10-20 11:40:05 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-10-20 11:40:05 -0230 |
commit | b51469b41167fb86ae2059a15cf0475c53fdda7b (patch) | |
tree | fc85d6ca2efd89c67e1e4e7438f437c3e08313f4 /java/src/Freeze/Map.java | |
parent | Fixed (ICE-5695) - IceSSL: misleading exception (diff) | |
download | ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.bz2 ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.xz ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.zip |
Down with ant. From the gradle to the grave.
Diffstat (limited to 'java/src/Freeze/Map.java')
-rw-r--r-- | java/src/Freeze/Map.java | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/java/src/Freeze/Map.java b/java/src/Freeze/Map.java deleted file mode 100644 index ddfef609246..00000000000 --- a/java/src/Freeze/Map.java +++ /dev/null @@ -1,75 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -package Freeze; - -/** - * Interface for Freeze maps. - * - * @see Connection - **/ -public interface Map<K, V> extends NavigableMap<K, V> -{ - /** - * Alternative to <code>java.util.SortedMap.put</code>. This version - * is more efficient because it does not decode and return the - * old value. - **/ - void fastPut(K key, V value); - - /** - * Closes the database associated with this map, as well as all open iterators. - * A map must be closed when it is no longer needed, either directly, or by - * closing the {@link Connection} associated with this map. - **/ - void close(); - - /** - * Closes all iterators for this map. - * - * @return The number of iterators that were closed. - **/ - int closeAllIterators(); - - /** - * Closes this map and destroys the underlying Berkeley DB database along with any indexes. - **/ - void destroy(); - - /** - * An <code>EntryIterator</code> allows the application to explicitly - * close an iterator and free resources allocated for the iterator - * in a timely fashion. - **/ - public interface EntryIterator<T> extends java.util.Iterator<T> - { - /** - * Closes this iterator, reclaiming associated resources. - **/ - void close(); - - /** - * Closes this iterator, reclaiming associated resources. This - * method is an alias for {@link #close}. - **/ - void destroy(); - } - - /** - * Returns the connection associated with this map. - * - * @return The connection associated with this map. - **/ - Connection getConnection(); - - /** - * Closes the database for this map. - **/ - void closeDb(); -} |