import java.net.*;
import java.io.*;
public class ServerThread extends Thread {
static public boolean bRun = true ;
Recepteur recepteur ;
public static void main(String argv[]) {
ServerThread st = new ServerThread() ;
st.start() ;
}
public ServerThread() {
recepteur = new Recepteur() ;
recepteur.start() ;
}
public void run() {
while( bRun == true ) {
System.out.println("Alive") ;
try {
Thread.sleep(1000) ; }
catch(Exception e) { } }
recepteur.fin() ;
System.exit(0) ;
}
} |