img
.
Summary
Cancellation is the method by which one thread can kill another. Because of issues surrounding
shared resources, held locks, and dynamically allocated storage, cancellation is extremely difficult
to use correctly.[11] Cancellation can be avoided completely by implementing a polling scheme in
any of the libraries, as long as we don't have to worry about blocked threads. In Java,
interrupt() with exception handlers makes it merely difficult to use cancellation.
[11]
Just spelling cancellation is an issue! Webster's allows it to be spelled with either one "l" or two.
Avoid cancellation if at all possible.
Search WWH :
Custom Search
Previous Page
Multithreaded Programming with JAVA - Topic Index
Next Page
Multithreaded Programming with JAVA - Bookmarks
Home