Вот код:
TaskA a = new TaskA(this.serverSocket, this.socket);
a.assignConfig(this.config);
this.threada = new Thread(a);
this.threada.start();
TaskB b = new TaskB(this.serverSocket, this.socket);
b.assignConfig(this.config);
this.threadb = new Thread(b);
this.threadb.start();
В TaskA этот класс работает следующим образом:
if (this.serversocket == null) {
this.serversocket = new ServerSocket(this.config.getI_respondPort());
}
if (this.serversocket != null) {
System.out
.println("this.serversocket " + this.serversocket);
}
this.serversocket.setSoTimeout((int) this.config
.getL_respondSocketInterval());
while (this.is_keepRun()) {
System.out.println("Keep Listening");
Thread.sleep(this.config.getL_heartBeatInterval());
}
И TaskB выглядит так:
while (this.is_keepRun()) {
if (this.serversocket != null) {
System.out.println("waiting input");
this.socket = this.serversocket.accept();
System.out.println("Connection received from "
+ this.socket.getInetAddress().getHostName());
}
}
Я назначаю один и тот же serverSocket и сокет через их собственный конструктор, но когда сокет получил соединение, TaskA может выполнить serversocket.accept
, но serversocket TaskB всегда равен null, что я сделал не так?Спасибо.