Uses of Interface
bb.util.ThreadMonitorListener

Packages that use ThreadMonitorListener
bb.util Provides miscellaneous utility classes and interfaces. 
 

Uses of ThreadMonitorListener in bb.util
 

Classes in bb.util that implement ThreadMonitorListener
private static class ThreadMonitor.UnitTest.ListenerTest
          Simple ThreadMonitorListener implementation meant for test purposes: it prints all events to System.out (except for onThreadState, which outputs to ThreadMonitor.UnitTest.ListenerTest.pw), it uses ThreadMonitor.UnitTest.ListenerTest.barrier to coordinate actions with the main thread, and onThreadState can be configured to deliberately throw a RuntimeException when makeFail called.
 

Fields in bb.util with type parameters of type ThreadMonitorListener
private  Set<ThreadMonitorListener> ThreadMonitor.listeners
          Set of all ThreadMonitorListeners that are interested in thread events.
 

Methods in bb.util that return ThreadMonitorListener
private  ThreadMonitorListener[] ThreadMonitor.getListeners()
          Returns a defensive copy of ThreadMonitor.listeners for use by the fireXXX methods.
 

Methods in bb.util with parameters of type ThreadMonitorListener
 boolean ThreadMonitor.addListener(ThreadMonitorListener listener)
          Attempts to add listener to an internal set.
 boolean ThreadMonitor.removeListener(ThreadMonitorListener listener)
          Attempts to remove listener from an internal set.