@author Nikita Koksharov
| 24 | * |
| 25 | */ |
| 26 | public interface ScanIterator { |
| 27 | |
| 28 | ScanResult<Object> scanIterator(String name, RedisClient client, String startPos, String pattern, int count); |
| 29 | |
| 30 | RFuture<ScanResult<Object>> scanIteratorAsync(String name, RedisClient client, String startPos, String pattern, int count); |
| 31 | |
| 32 | boolean remove(Object value); |
| 33 | |
| 34 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…