Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SalomonBrys committed Oct 9, 2014
1 parent d1eb02e commit e29a446
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -341,6 +341,14 @@ it = snappyDB.findKeysBetweenReverseIterator("android:09", "android:05");
it.close();
```

Here are the methods implemented in KeyIterator :
```java
public boolean hasNext(); // Whether or not this is the last key.
public String next(); // Advance to the next key.
public String[] next(int max); // Get an array of next keys (maximum max keys).
void close() throws IOException; // Closes the iterator.
```

License
--------
SnappyDB is opensource, contribution and feedback are welcomed
Expand Down

0 comments on commit e29a446

Please sign in to comment.