Method interrupt()
Return type: void
Member of:
java.lang.Thread
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
display.getThread().interrupt();
2
internalThread.interrupt();
3
thisThread.interrupt ();
4
this.interrupt();
5
thread.interrupt();
6
this.interrupt(); // notify() doesn't stop sleep
7
progressivePaintThread.interrupt();
8
_clock.interrupt();
9
t.interrupt();
10
down.interrupt();
11
thread.interrupt ( );
12
m_bareListenerThread.interrupt();
13
((Thread) threads.get(n)).interrupt();
14
runner.interrupt();
15
interrupt();
16
this.interrupt();
17
thread.interrupt();
18
m_task.interrupt();
19
thread.interrupt();
20
t.interrupt();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.