|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.runtime.DefaultGroovyMethodsSupport org.codehaus.groovy.runtime.SocketGroovyMethods
public class SocketGroovyMethods extends DefaultGroovyMethodsSupport
This class defines new groovy methods for Sockets which enhance JDK classes inside the Groovy environment.
NOTE: While this class contains many 'public' static methods, it is primarily regarded as an internal class (its internal package name suggests this also). We value backwards compatibility of these methods when used within Groovy but value less backwards compatibility at the Java method call level. I.e. future versions of Groovy may remove or move a method call in this file but would normally aim to keep the method available from within Groovy.
Method Summary | |
---|---|
static Socket
|
accept(ServerSocket serverSocket, Closure closure)
Accepts a connection and passes the resulting Socket to the closure which runs in a new Thread. |
static Socket
|
accept(ServerSocket serverSocket, boolean runInANewThread, Closure closure)
Accepts a connection and passes the resulting Socket to the closure which runs in a new Thread or the calling thread, as needed. |
static Writer
|
leftShift(Socket self, Object value)
Overloads the left shift operator to provide an append mechanism to add things to the output stream of a socket |
static OutputStream
|
leftShift(Socket self, byte[] value)
Overloads the left shift operator to provide an append mechanism to add bytes to the output stream of a socket |
static Object
|
withObjectStreams(Socket socket, Closure closure)
Creates an InputObjectStream and an OutputObjectStream from a Socket, and passes them to the closure. |
static Object
|
withStreams(Socket socket, Closure closure)
Passes the Socket's InputStream and OutputStream to the closure. |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Method Detail |
---|
public static Socket accept(ServerSocket serverSocket, Closure closure)
serverSocket
- a ServerSocketclosure
- a Closure
public static Socket accept(ServerSocket serverSocket, boolean runInANewThread, Closure closure)
serverSocket
- a ServerSocketrunInANewThread
- This flag should be true, if the closure should be invoked in a new thread, else false.closure
- a Closure
public static Writer leftShift(Socket self, Object value)
self
- a Socketvalue
- a value to append
public static OutputStream leftShift(Socket self, byte[] value)
self
- a Socketvalue
- a value to append
public static Object withObjectStreams(Socket socket, Closure closure)
socket
- this Socketclosure
- a Closure
public static Object withStreams(Socket socket, Closure closure)
socket
- a Socketclosure
- a Closure
Copyright © 2003-2013 The Codehaus. All rights reserved.