Skip to content

Commit

Permalink
INTERNAL: Add comment in collection get apis.
Browse files Browse the repository at this point in the history
  • Loading branch information
brido4125 authored and jhpark816 committed Sep 22, 2023
1 parent a095630 commit a7dc9da
Show file tree
Hide file tree
Showing 8 changed files with 579 additions and 580 deletions.
222 changes: 111 additions & 111 deletions src/main/java/net/spy/memcached/ArcusClient.java

Large diffs are not rendered by default.

528 changes: 264 additions & 264 deletions src/main/java/net/spy/memcached/ArcusClientIF.java

Large diffs are not rendered by default.

223 changes: 112 additions & 111 deletions src/main/java/net/spy/memcached/ArcusClientPool.java
Original file line number Diff line number Diff line change
Expand Up @@ -656,12 +656,12 @@ public CollectionFuture<Boolean> asyncLopCreate(String key,
return this.getClient().asyncLopCreate(key, type, attributes);
}

@Override
public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
long bkey,
ElementFlagFilter eFlagFilter) {
return this.getClient().asyncBopGet(key, bkey, eFlagFilter);
}
// @Override
// public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
// long bkey,
// ElementFlagFilter eFlagFilter) {
// return this.getClient().asyncBopGet(key, bkey, eFlagFilter);
// }

@Override
public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
Expand All @@ -673,14 +673,14 @@ public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
dropIfEmpty);
}

@Override
public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
long from, long to,
ElementFlagFilter eFlagFilter,
int offset, int count) {
return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
count);
}
// @Override
// public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
// long from, long to,
// ElementFlagFilter eFlagFilter,
// int offset, int count) {
// return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
// count);
// }

@Override
public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
Expand All @@ -693,13 +693,13 @@ public CollectionFuture<Map<Long, Element<Object>>> asyncBopGet(String key,
count, withDelete, dropIfEmpty);
}

@Override
public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
long bkey,
ElementFlagFilter eFlagFilter,
Transcoder<T> tc) {
return this.getClient().asyncBopGet(key, bkey, eFlagFilter, tc);
}
// @Override
// public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
// long bkey,
// ElementFlagFilter eFlagFilter,
// Transcoder<T> tc) {
// return this.getClient().asyncBopGet(key, bkey, eFlagFilter, tc);
// }

@Override
public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
Expand All @@ -712,15 +712,15 @@ public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
dropIfEmpty, tc);
}

@Override
public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
long from, long to,
ElementFlagFilter eFlagFilter,
int offset, int count,
Transcoder<T> tc) {
return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
count, tc);
}
// @Override
// public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
// long from, long to,
// ElementFlagFilter eFlagFilter,
// int offset, int count,
// Transcoder<T> tc) {
// return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
// count, tc);
// }

@Override
public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
Expand All @@ -734,10 +734,10 @@ public <T> CollectionFuture<Map<Long, Element<T>>> asyncBopGet(String key,
count, withDelete, dropIfEmpty, tc);
}

@Override
public CollectionFuture<Map<String, Object>> asyncMopGet(String key) {
return this.getClient().asyncMopGet(key);
}
// @Override
// public CollectionFuture<Map<String, Object>> asyncMopGet(String key) {
// return this.getClient().asyncMopGet(key);
// }

@Override
public CollectionFuture<Map<String, Object>> asyncMopGet(String key,
Expand All @@ -746,10 +746,10 @@ public CollectionFuture<Map<String, Object>> asyncMopGet(String key,
return this.getClient().asyncMopGet(key, withDelete, dropIfEmpty);
}

@Override
public CollectionFuture<Map<String, Object>> asyncMopGet(String key, String mkey) {
return this.getClient().asyncMopGet(key, mkey);
}
// @Override
// public CollectionFuture<Map<String, Object>> asyncMopGet(String key, String mkey) {
// return this.getClient().asyncMopGet(key, mkey);
// }

@Override
public CollectionFuture<Map<String, Object>> asyncMopGet(String key, String mkey,
Expand All @@ -758,10 +758,10 @@ public CollectionFuture<Map<String, Object>> asyncMopGet(String key, String mkey
return this.getClient().asyncMopGet(key, mkey, withDelete, dropIfEmpty);
}

@Override
public CollectionFuture<Map<String, Object>> asyncMopGet(String key, List<String> mkeyList) {
return this.getClient().asyncMopGet(key, mkeyList);
}
// @Override
// public CollectionFuture<Map<String, Object>> asyncMopGet(String key, List<String> mkeyList) {
// return this.getClient().asyncMopGet(key, mkeyList);
// }

@Override
public CollectionFuture<Map<String, Object>> asyncMopGet(String key, List<String> mkeyList,
Expand All @@ -770,10 +770,10 @@ public CollectionFuture<Map<String, Object>> asyncMopGet(String key, List<String
return this.getClient().asyncMopGet(key, mkeyList, withDelete, dropIfEmpty);
}

@Override
public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, Transcoder<T> tc) {
return this.getClient().asyncMopGet(key, tc);
}
// @Override
// public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, Transcoder<T> tc) {
// return this.getClient().asyncMopGet(key, tc);
// }

@Override
public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key,
Expand All @@ -783,11 +783,11 @@ public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key,
return this.getClient().asyncMopGet(key, withDelete, dropIfEmpty, tc);
}

@Override
public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, String mkey,
Transcoder<T> tc) {
return this.getClient().asyncMopGet(key, mkey, tc);
}
// @Override
// public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, String mkey,
// Transcoder<T> tc) {
// return this.getClient().asyncMopGet(key, mkey, tc);
// }

@Override
public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, String mkey,
Expand All @@ -797,11 +797,11 @@ public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, String mkey,
return this.getClient().asyncMopGet(key, mkey, withDelete, dropIfEmpty, tc);
}

@Override
public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, List<String> mkeyList,
Transcoder<T> tc) {
return this.getClient().asyncMopGet(key, mkeyList, tc);
}
// @Override
// public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, List<String> mkeyList,
// Transcoder<T> tc) {
// return this.getClient().asyncMopGet(key, mkeyList, tc);
// }

@Override
public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, List<String> mkeyList,
Expand All @@ -811,11 +811,11 @@ public <T> CollectionFuture<Map<String, T>> asyncMopGet(String key, List<String>
return this.getClient().asyncMopGet(key, mkeyList, withDelete, dropIfEmpty, tc);
}

@Override
public CollectionFuture<List<Object>> asyncLopGet(String key, int index) {
return this.getClient()
.asyncLopGet(key, index);
}
// @Override
// public CollectionFuture<List<Object>> asyncLopGet(String key, int index) {
// return this.getClient()
// .asyncLopGet(key, index);
// }

@Override
public CollectionFuture<List<Object>> asyncLopGet(String key, int index,
Expand All @@ -825,10 +825,10 @@ public CollectionFuture<List<Object>> asyncLopGet(String key, int index,
.asyncLopGet(key, index, withDelete, dropIfEmpty);
}

@Override
public CollectionFuture<List<Object>> asyncLopGet(String key, int from, int to) {
return this.getClient().asyncLopGet(key, from, to);
}
// @Override
// public CollectionFuture<List<Object>> asyncLopGet(String key, int from, int to) {
// return this.getClient().asyncLopGet(key, from, to);
// }

@Override
public CollectionFuture<List<Object>> asyncLopGet(String key,
Expand All @@ -839,10 +839,10 @@ public CollectionFuture<List<Object>> asyncLopGet(String key,
dropIfEmpty);
}

@Override
public <T> CollectionFuture<List<T>> asyncLopGet(String key, int index, Transcoder<T> tc) {
return this.getClient().asyncLopGet(key, index, tc);
}
// @Override
// public <T> CollectionFuture<List<T>> asyncLopGet(String key, int index, Transcoder<T> tc) {
// return this.getClient().asyncLopGet(key, index, tc);
// }

@Override
public <T> CollectionFuture<List<T>> asyncLopGet(String key, int index,
Expand All @@ -853,10 +853,11 @@ public <T> CollectionFuture<List<T>> asyncLopGet(String key, int index,
dropIfEmpty, tc);
}

@Override
public <T> CollectionFuture<List<T>> asyncLopGet(String key, int from, int to, Transcoder<T> tc) {
return this.getClient().asyncLopGet(key, from, to, tc);
}
// @Override
// public <T> CollectionFuture<List<T>> asyncLopGet(String key, int from, int to,
// Transcoder<T> tc) {
// return this.getClient().asyncLopGet(key, from, to, tc);
// }

@Override
public <T> CollectionFuture<List<T>> asyncLopGet(String key,
Expand All @@ -868,11 +869,11 @@ public <T> CollectionFuture<List<T>> asyncLopGet(String key,
dropIfEmpty, tc);
}

@Override
public CollectionFuture<Set<Object>> asyncSopGet(String key, int count) {
return this.getClient()
.asyncSopGet(key, count);
}
// @Override
// public CollectionFuture<Set<Object>> asyncSopGet(String key, int count) {
// return this.getClient()
// .asyncSopGet(key, count);
// }

@Override
public CollectionFuture<Set<Object>> asyncSopGet(String key,
Expand All @@ -883,10 +884,10 @@ public CollectionFuture<Set<Object>> asyncSopGet(String key,
.asyncSopGet(key, count, withDelete, dropIfEmpty);
}

@Override
public <T> CollectionFuture<Set<T>> asyncSopGet(String key, int count, Transcoder<T> tc) {
return this.getClient().asyncSopGet(key, count, tc);
}
// @Override
// public <T> CollectionFuture<Set<T>> asyncSopGet(String key, int count, Transcoder<T> tc) {
// return this.getClient().asyncSopGet(key, count, tc);
// }

@Override
public <T> CollectionFuture<Set<T>> asyncSopGet(String key,
Expand Down Expand Up @@ -928,11 +929,11 @@ public CollectionFuture<Boolean> asyncMopDelete(String key, String mkey,
return this.getClient().asyncMopDelete(key, mkey, dropIfEmpty);
}

@Override
public CollectionFuture<Boolean> asyncMopDelete(String key, List<String> mkeyList,
boolean dropIfEmpty) {
return this.getClient().asyncMopDelete(key, mkeyList, dropIfEmpty);
}
// @Override
// public CollectionFuture<Boolean> asyncMopDelete(String key, List<String> mkeyList,
// boolean dropIfEmpty) {
// return this.getClient().asyncMopDelete(key, mkeyList, dropIfEmpty);
// }

@Override
public CollectionFuture<Boolean> asyncLopDelete(String key, int index,
Expand Down Expand Up @@ -1290,11 +1291,11 @@ public <T> CollectionFuture<Map<Integer, CollectionOperationStatus>> asyncBopPip
attributesForCreate, tc);
}

@Override
public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
String key, byte[] bkey, ElementFlagFilter eFlagFilter) {
return this.getClient().asyncBopGet(key, bkey, eFlagFilter);
}
// @Override
// public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
// String key, byte[] bkey, ElementFlagFilter eFlagFilter) {
// return this.getClient().asyncBopGet(key, bkey, eFlagFilter);
// }

@Override
public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
Expand All @@ -1304,13 +1305,13 @@ public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
dropIfEmpty);
}

@Override
public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
String key, byte[] from, byte[] to, ElementFlagFilter eFlagFilter,
int offset, int count) {
return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
count);
}
// @Override
// public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
// String key, byte[] from, byte[] to, ElementFlagFilter eFlagFilter,
// int offset, int count) {
// return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
// count);
// }

@Override
public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
Expand All @@ -1320,11 +1321,11 @@ public CollectionFuture<Map<ByteArrayBKey, Element<Object>>> asyncBopGet(
count, withDelete, dropIfEmpty);
}

@Override
public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
String key, byte[] bkey, ElementFlagFilter eFlagFilter, Transcoder<T> tc) {
return this.getClient().asyncBopGet(key, bkey, eFlagFilter, tc);
}
// @Override
// public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
// String key, byte[] bkey, ElementFlagFilter eFlagFilter, Transcoder<T> tc) {
// return this.getClient().asyncBopGet(key, bkey, eFlagFilter, tc);
// }

@Override
public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
Expand All @@ -1334,13 +1335,13 @@ public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
dropIfEmpty, tc);
}

@Override
public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
String key, byte[] from, byte[] to, ElementFlagFilter eFlagFilter,
int offset, int count, Transcoder<T> tc) {
return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
count, tc);
}
// @Override
// public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
// String key, byte[] from, byte[] to, ElementFlagFilter eFlagFilter,
// int offset, int count, Transcoder<T> tc) {
// return this.getClient().asyncBopGet(key, from, to, eFlagFilter, offset,
// count, tc);
// }

@Override
public <T> CollectionFuture<Map<ByteArrayBKey, Element<T>>> asyncBopGet(
Expand Down
Loading

0 comments on commit a7dc9da

Please sign in to comment.