Uses of Interface
org.apache.guacamole.io.GuacamoleWriter
-
Packages that use GuacamoleWriter Package Description org.apache.guacamole.io All classes relating directly to data input or output.org.apache.guacamole.net Classes which apply to network-specific concepts, such as low-level sockets and tunnels.org.apache.guacamole.protocol Classes relating directly to the Guacamole protocol. -
-
Uses of GuacamoleWriter in org.apache.guacamole.io
Classes in org.apache.guacamole.io that implement GuacamoleWriter Modifier and Type Class Description class
WriterGuacamoleWriter
A GuacamoleWriter which wraps a standard Java Writer, using that Writer as the Guacamole instruction stream. -
Uses of GuacamoleWriter in org.apache.guacamole.net
Methods in org.apache.guacamole.net that return GuacamoleWriter Modifier and Type Method Description GuacamoleWriter
AbstractGuacamoleTunnel. acquireWriter()
Acquires exclusive write access to the Guacamole instruction stream and returns a GuacamoleWriter for writing to that stream.GuacamoleWriter
DelegatingGuacamoleTunnel. acquireWriter()
GuacamoleWriter
GuacamoleTunnel. acquireWriter()
Acquires exclusive write access to the Guacamole instruction stream and returns a GuacamoleWriter for writing to that stream.GuacamoleWriter
DelegatingGuacamoleSocket. getWriter()
GuacamoleWriter
GuacamoleSocket. getWriter()
Returns a GuacamoleWriter which can be used to write to the Guacamole instruction stream associated with the connection represented by this GuacamoleSocket.GuacamoleWriter
InetGuacamoleSocket. getWriter()
GuacamoleWriter
SSLGuacamoleSocket. getWriter()
-
Uses of GuacamoleWriter in org.apache.guacamole.protocol
Classes in org.apache.guacamole.protocol that implement GuacamoleWriter Modifier and Type Class Description class
FilteredGuacamoleWriter
GuacamoleWriter which applies a given GuacamoleFilter to observe or alter all written instructions.Methods in org.apache.guacamole.protocol that return GuacamoleWriter Modifier and Type Method Description GuacamoleWriter
FilteredGuacamoleSocket. getWriter()
Constructors in org.apache.guacamole.protocol with parameters of type GuacamoleWriter Constructor Description FilteredGuacamoleWriter(GuacamoleWriter writer, GuacamoleFilter filter)
Wraps the given GuacamoleWriter, applying the given filter to all written instructions.
-