In the Blackberry application class, what's the difference between hasEventThread () and isHandlingEvents (). I'm just curious because I just found hasEventThread useful.
From BB docs for Applicaiton:
public boolean hasEventThread () Determines whether this application has an event dispatcher. Returns: True, if this application introduced an event dispatcher (i.e., it called Application.enterEventDispatcher ()); otherwise false. isHandlingEvents
public final boolean isHandlingEvents () Determines whether this application is in the event loop. Returns: True if the application has entered an event dispatch loop; otherwise false.
My only guess is that isHandlingEvents most often happens sometime after hasEventThread. But is it really helpful?
source
share