Uses of Class
com.blackrook.redis.struct.DataList
- 
Packages that use DataList Package Description com.blackrook.redis.io Contains classes relevant to reading and writing to Redis sockets.com.blackrook.redis.struct Additional helper data structures and methods. - 
- 
Uses of DataList in com.blackrook.redis.io
Methods in com.blackrook.redis.io with parameters of type DataList Modifier and Type Method Description protected intRESPReader. readBulk(DataList dl, int len)Reads bytes until CRLF and returns how many bytes in the "string" (before CRLF).protected intRESPReader. readLine(DataList dl)Reads bytes until CRLF and returns how many bytes in the "string" (before CRLF). - 
Uses of DataList in com.blackrook.redis.struct
Methods in com.blackrook.redis.struct that return DataList Modifier and Type Method Description DataListDataList. append(byte b)Appends a byte to the end of this buffer.DataListDataList. append(byte[] b)Appends a series of bytes to the end of this buffer.DataListDataList. append(byte[] b, int offset, int length)Appends a series of bytes to the end of this buffer.DataListDataList. clear()Deletes all bytes from this buffer.DataListDataList. delete(int startIndex, int length)Deletes a series of bytes from this buffer.DataListDataList. insertAt(byte[] b, int startIndex)Inserts a series of bytes into this buffer at a specific index. 
 -