| Author |
threads concurrency problem
|
naved momin
Ranch Hand
Joined: Jul 03, 2011
Posts: 543
|
|
i have code a chat server and a client with 2 threads in each in server and 2 for client
1 thread will start writing and other thread of client will start listening to the server thread
when this both threads finish the two other thread comes into picture
where 1 server thread is listening for the client and other client thread in writing the message to the server
but my problem is with concurency because when i write in server it appears in client but when i write in client it is not visible to the server unless and until server writes another message
so can you guyz help me this is first time my app contains multithreads
please copy this code and test in your machine for better understanding
server code
client code
|
The Only way to learn is ...........do!
|
 |
Rohan Dhapodkar
Greenhorn
Joined: Jun 27, 2011
Posts: 23
|
|
naved momin wrote:
This is issue with go() method of ChatServer, where you are writing to socket first and then creating read thread. Reorder your code and it will work.
|
 |
 |
|
|
subject: threads concurrency problem
|
|
|