inheritance tree
Buffer
class definition
This class defines a buffer for any incoming data (e.g., OSC packets): arriving data is collected with the method put, and all data collected so far retrieved with the method getAll.
class Buffer (Inheritance-free)
attr xlist
- getAll(Xs)
Returns Xs, a list with all buffer elements collected so far (since the last call of getAll), and empties the buffer. Elements in Xs are in the order they where written into the buffer.
- init()
- put(X)
Add X to the tail of the buffer.
end