Package com.verisign.epp.transport
Class EPPServerThread
- java.lang.Object
-
- java.lang.Thread
-
- com.verisign.epp.transport.EPPServerThread
-
- All Implemented Interfaces:
java.lang.Runnable
public class EPPServerThread extends java.lang.Thread
Server thread for processing a new client connection.
-
-
Constructor Summary
Constructors Constructor Description EPPServerThread(java.net.Socket aSocket, ServerEventHandler aHandler)
Creates a new EPPServerThread object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
run()
Process the client connection.-
Methods inherited from class java.lang.Thread
activeCount, checkAccess, clone, countStackFrames, currentThread, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, onSpinWait, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, suspend, toString, yield
-
-
-
-
Constructor Detail
-
EPPServerThread
public EPPServerThread(java.net.Socket aSocket, ServerEventHandler aHandler) throws java.io.IOException
Creates a new EPPServerThread object.- Parameters:
aSocket
- Client socket to handle in threadaHandler
- Client connection handler- Throws:
java.io.IOException
- Exception process the client socket
-
-