write_to method
write_to
Copies the contained data to another StreamContainer
.
def write_to(self, stream_container):
...
Parameter | Type | Description |
---|
stream_container | StreamContainer | The stream container to copy to. |
write_to
Copies the contained data to another StreamContainer
.
def write_to(self, stream_container, length):
...
Parameter | Type | Description |
---|
stream_container | StreamContainer | The stream container to copy to. |
length | int | The bytes count to write. |
Exceptions
Exception | Description |
---|
FrameworkException | Copy operation cannot complete. Cannot read + count + bytes. |
See Also