public class Socket
extends Object
GDK enhancements for Socket.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Writer |
leftShift(Object value)Overloads the left shift operator to provide an append mechanism to add things to the output stream of a socket |
|
public OutputStream |
leftShift(byte[] value)Overloads the left shift operator to provide an append mechanism to add bytes to the output stream of a socket |
<T> |
public T |
withObjectStreams(Closure<T> closure)Creates an InputObjectStream and an OutputObjectStream from a Socket, and passes them to the closure. |
<T> |
public T |
withStreams(Closure<T> closure)Passes the Socket's InputStream and OutputStream to the closure. |
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Overloads the left shift operator to provide an append mechanism to add things to the output stream of a socket
value - a value to appendOverloads the left shift operator to provide an append mechanism to add bytes to the output stream of a socket
value - a value to appendCreates 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 ClosurePasses the Socket's InputStream and OutputStream to the closure. The streams will be closed after the closure returns, even if an exception is thrown.
closure - a Closure