Advertisement
Thibstars

ThreadCompleteListener

Nov 15th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. /**
  2.  * Interface to listen to completed threads.
  3.  *
  4.  * @author Thibault Helsmoortel
  5.  */
  6. public interface ThreadCompleteListener {
  7.  
  8.     void notifyThreadComplete(final Thread thread);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement