update missing sort command in transactions api

This commit is contained in:
Jonathan Leibiusky
2011-01-21 11:33:19 -03:00
parent f30094501c
commit b833089005
2 changed files with 10 additions and 0 deletions

View File

@@ -433,6 +433,11 @@ public class BinaryTransaction {
return client.getStatusCodeReply();
}
public String sort(final byte[] key, final byte[] dstkey) {
client.sort(key, dstkey);
return client.getStatusCodeReply();
}
public String discard() {
client.discard();
inTransaction = false;