Example usage for Java android.os HandlerThread fields, constructors, methods, implement or subclass
The text is from its open source code.
HandlerThread(String name, int priority) Constructs a HandlerThread. | |
HandlerThread(String name) |
Looper | getLooper() This method returns the Looper associated with this thread. |
int | getThreadId() Returns the identifier of this thread. |
void | interrupt() Interrupts this thread. |
boolean | quit() Quits the handler thread's looper. |
boolean | quitSafely() Quits the handler thread's looper safely. |
void | start() Causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread. |