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 int
RESPReader. readBulk(DataList dl, int len)
Reads bytes until CRLF and returns how many bytes in the "string" (before CRLF).protected int
RESPReader. 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 DataList
DataList. append(byte b)
Appends a byte to the end of this buffer.DataList
DataList. append(byte[] b)
Appends a series of bytes to the end of this buffer.DataList
DataList. append(byte[] b, int offset, int length)
Appends a series of bytes to the end of this buffer.DataList
DataList. clear()
Deletes all bytes from this buffer.DataList
DataList. delete(int startIndex, int length)
Deletes a series of bytes from this buffer.DataList
DataList. insertAt(byte[] b, int startIndex)
Inserts a series of bytes into this buffer at a specific index.
-