![JAR search and dependency download from the Maven repository](/logo.png)
redis.clients.jedis.ScanResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis Show documentation
Show all versions of jedis Show documentation
A java client for github.com/antirez/redis, a fork of github.com/xetorthio/jedis
package redis.clients.jedis;
import java.util.List;
import redis.clients.util.SafeEncoder;
public class ScanResult {
private byte[] cursor;
private List results;
@Deprecated
/**
* This method is deprecated due to bug (scan cursor should be unsigned long)
* And will be removed on next major release
* @see https://github.com/xetorthio/jedis/issues/531
*/
public ScanResult(int cursor, List results) {
this(Protocol.toByteArray(cursor), results);
}
public ScanResult(String cursor, List results) {
this(SafeEncoder.encode(cursor), results);
}
public ScanResult(byte[] cursor, List results) {
this.cursor = cursor;
this.results = results;
}
@Deprecated
/**
* This method is deprecated due to bug (scan cursor should be unsigned long)
* And will be removed on next major release
* @see https://github.com/xetorthio/jedis/issues/531
* @return int(currently), but will be changed to String, so be careful to prepare!
*/
public int getCursor() {
return Integer.parseInt(getStringCursor());
}
/**
* Returns the new value of the cursor
* @return the new cursor value. {@link ScanParams#SCAN_POINTER_START} when a complete iteration has finished
* FIXME: This method should be changed to getCursor() on next major release
*/
public String getStringCursor() {
return SafeEncoder.encode(cursor);
}
/**
* Is the iteration complete. I.e. was the complete dataset scanned.
*
* @return true if the iteration is complete
*/
public boolean isCompleteIteration() {
return ScanParams.SCAN_POINTER_START.equals(getStringCursor());
}
public byte[] getCursorAsBytes() {
return cursor;
}
/**
* The scan results from the current call.
* @return the scan results
*/
public List getResult() {
return results;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy