Package com.jk.core.reflection.server
Class ClientHandler
java.lang.Object
com.jk.core.reflection.server.ClientHandler
- All Implemented Interfaces:
 Runnable
This class is responsible for handling client connections and processing
 method call requests.
 
 This class implements the Runnable interface to be executed in a
 separate
 thread.
- Version:
 - 1.0
 - Author:
 - Dr. Jalal H. Kiswani
 
- 
Constructor Summary
ConstructorsConstructorDescriptionClientHandler(Socket client) This method constructs a newClientHandlerusing the client's socket. - 
Method Summary
Modifier and TypeMethodDescriptionvoidrun()This method handles the client's request by processing method call information. 
- 
Constructor Details
- 
ClientHandler
This method constructs a newClientHandlerusing the client's socket.- Parameters:
 client- Specifies the socket representing the client connection.
 
 - 
 - 
Method Details