Represents a stream buffer with this number on a device. A stream buffer is a place to store a queue of stream actions.
The following example illustrates how you can obtain an instance of this type:
from zaber_motion.ascii import Connection
connection = Connection.open_serial_port('COM3')
device = connection.get_device(1)
streams = device.streams
stream_buffer = streams.get_buffer(1)
mget_content()
async availablestream_buffer.get_content()
Get the buffer contents as an array of strings.
Return Value
List[str] A string array containing all the stream commands stored in the buffer.