Uses of Class
com.blackrook.redis.struct.DataList
Packages that use DataList
Package
Description
Contains classes relevant to reading and writing to Redis sockets.
Additional helper data structures and methods.
-
Uses of DataList in com.blackrook.redis.io
Methods in com.blackrook.redis.io with parameters of type DataListModifier and TypeMethodDescriptionprotected intReads bytes until CRLF and returns how many bytes in the "string" (before CRLF).protected intReads 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 DataListModifier and TypeMethodDescriptionDataList.append(byte b) Appends a byte to the end of this buffer.DataList.append(byte[] b) Appends a series of bytes to the end of this buffer.DataList.append(byte[] b, int offset, int length) Appends a series of bytes to the end of this buffer.DataList.clear()Deletes all bytes from this buffer.DataList.delete(int startIndex, int length) Deletes a series of bytes from this buffer.DataList.insertAt(byte[] b, int startIndex) Inserts a series of bytes into this buffer at a specific index.