Hi there,
I am developing server in java which accept client request in multi threaded fashion and response back, each client request will be process by separate dedicated server thread.
I have write static function to read data from client socket at once
prototype:
is this static function thread safe ???
I am not using clientInputStre am more else where in flow ( in current thread )
your help makes me happy,
Thank you
Abhinay
I am developing server in java which accept client request in multi threaded fashion and response back, each client request will be process by separate dedicated server thread.
I have write static function to read data from client socket at once
prototype:
Code:
public static ISOMessage getDetails( final DataInputStream clientInputStream );
I am not using clientInputStre am more else where in flow ( in current thread )
your help makes me happy,
Thank you
Abhinay
Comment