Re: JAVA multithread questions.

1999-07-13 Thread jools enticknap
Hi This sort of problem is fairly common and Java is more than capable of dealing with it. I would guess from the questions that you have asked, you need a little information on both Threads and the networking API. There are two resources that I would recommend; 1) The Java Tutorial

Re: JAVA multithread questions.

1999-07-08 Thread Alex M.
You create threads by making classes that implement runnable or extend thread. Calling .start() on those classes will make the code in the run() method of those classes execute in a new thread. So, that code should be your network connecting code. Good place to start is java.sun.com, follow the

JAVA multithread questions.

1999-07-08 Thread Chien-Lung Wu
Hi, I am doing java networking program. Since my project have a little trick architecture, I am planning to use JAVA as my design language. The Questions are: 1. one of my machine called PS have to connect to 3 different servers (R1, R2, and R3) to collect info. So PS have to make connect with