(long wait)
| 97 | } |
| 98 | |
| 99 | public synchronized void join(long wait) throws InterruptedException { |
| 100 | if(receiver != null) { |
| 101 | Thread thread = receiver.getThread(); |
| 102 | if(thread != null) |
| 103 | thread.join(wait); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | |
| 108 | public int getSocketConnectionTimeout() { |
no outgoing calls