public interface GuacamoleWriter
| Modifier and Type | Method and Description |
|---|---|
void |
write(char[] chunk)
Writes the entire given array of characters to the Guacamole instruction
stream.
|
void |
write(char[] chunk,
int off,
int len)
Writes a portion of the given array of characters to the Guacamole
instruction stream.
|
void |
writeInstruction(GuacamoleInstruction instruction)
Writes the given fully parsed instruction to the Guacamole instruction
stream.
|
void write(char[] chunk,
int off,
int len)
throws GuacamoleException
chunk - An array of characters containing Guacamole instructions.off - The start offset of the portion of the array to write.len - The length of the portion of the array to write.GuacamoleException - If an error occurred while writing the
portion of the array specified.void write(char[] chunk)
throws GuacamoleException
chunk - An array of characters consisting only of complete
Guacamole instructions.GuacamoleException - If an error occurred while writing the
the specified array.void writeInstruction(GuacamoleInstruction instruction) throws GuacamoleException
instruction - The Guacamole instruction to write.GuacamoleException - If an error occurred while writing the
instruction.Copyright © 2015. All rights reserved.