redis.clients.jedis
Class ScanResult<T>

java.lang.Object
  extended by redis.clients.jedis.ScanResult<T>

public class ScanResult<T>
extends Object


Constructor Summary
ScanResult(byte[] cursor, List<T> results)
           
ScanResult(int cursor, List<T> results)
          Deprecated. 
ScanResult(String cursor, List<T> results)
           
 
Method Summary
 int getCursor()
          Deprecated. 
 byte[] getCursorAsBytes()
           
 List<T> getResult()
           
 String getStringCursor()
          FIXME: This method should be changed to getCursor() on next major release
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ScanResult

@Deprecated
public ScanResult(int cursor,
                             List<T> results)
Deprecated. 


ScanResult

public ScanResult(String cursor,
                  List<T> results)

ScanResult

public ScanResult(byte[] cursor,
                  List<T> results)
Method Detail

getCursor

@Deprecated
public int getCursor()
Deprecated. 


getStringCursor

public String getStringCursor()
FIXME: This method should be changed to getCursor() on next major release


getCursorAsBytes

public byte[] getCursorAsBytes()

getResult

public List<T> getResult()


Copyright © 2014. All rights reserved.