org.apache.avro.ipc
Class SocketServer
java.lang.Object
java.lang.Thread
org.apache.avro.ipc.SocketServer
- All Implemented Interfaces:
- Runnable, Server
- Direct Known Subclasses:
- SaslSocketServer
public class SocketServer
- extends Thread
- implements Server
A socket-based server implementation. This uses a simple, non-standard wire
protocol and is not intended for production services.
Methods inherited from class java.lang.Thread |
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield |
SocketServer
public SocketServer(Responder responder,
SocketAddress addr)
throws IOException
- Throws:
IOException
getPort
public int getPort()
- Description copied from interface:
Server
- The port this server runs on.
- Specified by:
getPort
in interface Server
run
public void run()
- Specified by:
run
in interface Runnable
- Overrides:
run
in class Thread
close
public void close()
- Description copied from interface:
Server
- Stop this server.
- Specified by:
close
in interface Server
getTransceiver
protected Transceiver getTransceiver(SocketChannel channel)
throws IOException
- Creates an appropriate
Transceiver
for this server.
Returns a SocketTransceiver
by default.
- Throws:
IOException
main
public static void main(String[] arg)
throws Exception
- Throws:
Exception
Copyright © 2010 The Apache Software Foundation