Return type | Name and parameters |
---|---|
Writer
|
leftShift(Object value)
Overloads the left shift operator to provide an append mechanism to add things to the output stream of a socket |
OutputStream
|
leftShift(byte[] value)
Overloads the left shift operator to provide an append mechanism to add bytes to the output stream of a socket |
Object
|
withObjectStreams(Closure closure)
Creates an InputObjectStream and an OutputObjectStream from a Socket, and passes them to the closure. |
Object
|
withStreams(Closure closure)
Passes the Socket's InputStream and OutputStream to the closure. |
Overloads the left shift operator to provide an append mechanism to add things to the output stream of a socket
value
- a value to append.Overloads the left shift operator to provide an append mechanism to add bytes to the output stream of a socket
value
- a value to append.Creates an InputObjectStream and an OutputObjectStream from a Socket, and passes them to the closure. The streams will be closed after the closure returns, even if an exception is thrown.
closure
- a Closure.