Home | History | Annotate | Download | only in elonen

Lines Matching refs:myThread

1791     private Thread myThread;
1941 return wasStarted() && !this.myServerSocket.isClosed() && this.myThread.isAlive();
2109 this.myThread = new Thread(serverRunnable);
2110 this.myThread.setDaemon(daemon);
2111 this.myThread.setName("NanoHttpd Main Listener");
2112 this.myThread.start();
2134 if (this.myThread != null) {
2135 this.myThread.join();
2143 return this.myServerSocket != null && this.myThread != null;