Home | History | Annotate | Download | only in impl

Lines Matching full:notifythread

36     private NotifyThread notifyThread;
105 if (notifyThread == null) {
106 notifyThread = new NotifyThread(this);
107 notifyThread.setDaemon(true);
108 notifyThread.start();
110 notifyThread.queue(listeners.toArray(new EventListener[listeners.size()]));
118 private static class NotifyThread extends Thread {
122 NotifyThread(ICUNotifier notifier) {