Searched refs:NotificationListener (Results 1 – 12 of 12) sorted by relevance
11 import expo.modules.notifications.notifications.interfaces.NotificationListener;23 …private WeakHashMap<NotificationListener, WeakReference<NotificationListener>> mListenerReferenceM…46 public void addListener(NotificationListener listener) { in addListener()49 WeakReference<NotificationListener> listenerReference = new WeakReference<>(listener); in addListener()66 public void removeListener(NotificationListener listener) { in removeListener()78 for (WeakReference<NotificationListener> listenerReference : mListenerReferenceMap.values()) { in onNotificationReceived()79 NotificationListener listener = listenerReference.get(); in onNotificationReceived()97 for (WeakReference<NotificationListener> listenerReference : mListenerReferenceMap.values()) { in onNotificationResponseReceived()98 NotificationListener listener = listenerReference.get(); in onNotificationResponseReceived()112 for (WeakReference<NotificationListener> listenerReference : mListenerReferenceMap.values()) { in onNotificationsDropped()[all …]
13 void addListener(NotificationListener listener); in addListener()21 void removeListener(NotificationListener listener); in removeListener()
12 public interface NotificationListener { interface
9 import expo.modules.notifications.notifications.interfaces.NotificationListener18 open class NotificationsEmitter : Module(), NotificationListener {
13 import expo.modules.notifications.notifications.interfaces.NotificationListener;18 public class NotificationsEmitter extends ExportedModule implements NotificationListener {
12 import expo.modules.notifications.notifications.interfaces.NotificationListener41 open class NotificationsHandler : Module(), NotificationListener {
18 import expo.modules.notifications.notifications.interfaces.NotificationListener;32 public class NotificationsHandler extends ExportedModule implements NotificationListener {
16 expo.modules.notifications.notifications.interfaces.NotificationListener