This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi how do i transfer data from one thread to another thread... coz i doing a server using socket and when one connected client need to send a message to another client.... or u have any better idea....thanks
Karthik Guru
Ranch Hand
Joined: Mar 06, 2001
Posts: 1209
posted
0
since all clients are talking through different socket instances, keep references to all the socket connections, possibly n an array / array list and then transmit the message across all socket connections when somec lient sends a message to the server. karthik
Originally posted by zniter goh: hi how do i transfer data from one thread to another thread... coz i doing a server using socket and when one connected client need to send a message to another client.... or u have any better idea....thanks