1
1
/**
2
2
*
3
- * Copyright 2017, Optimizely and contributors
3
+ * Copyright 2017-2018 , Optimizely and contributors
4
4
*
5
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
6
* you may not use this file except in compliance with the License.
16
16
*/
17
17
package com .optimizely .ab .notification ;
18
18
19
+ import com .optimizely .ab .config .Experiment ;
20
+ import com .optimizely .ab .config .Variation ;
21
+ import com .optimizely .ab .event .LogEvent ;
19
22
import org .slf4j .Logger ;
20
23
import org .slf4j .LoggerFactory ;
21
24
25
+ import javax .annotation .Nonnull ;
22
26
import java .util .ArrayList ;
23
27
import java .util .HashMap ;
24
28
import java .util .Map ;
@@ -78,6 +82,43 @@ public NotificationCenter() {
78
82
// we used a list so that notification order can mean something.
79
83
private Map <NotificationType , ArrayList <NotificationHolder >> notificationsListeners =new HashMap <NotificationType , ArrayList <NotificationHolder >>();
80
84
85
+ /**
86
+ * Convenience method to support lambdas as callbacks in later version of Java (8+).
87
+ * @param activateNotificationListenerInterface
88
+ * @return greater than zero if added.
89
+ */
90
+ public int addActivateNotificationListener (final ActivateNotificationListenerInterface activateNotificationListenerInterface ) {
91
+ if (activateNotificationListenerInterface instanceof ActivateNotificationListener ) {
92
+ return addNotificationListener (NotificationType .Activate , (NotificationListener )activateNotificationListenerInterface );
93
+ }
94
+ else {
95
+ return addNotificationListener (NotificationType .Activate , new ActivateNotificationListener () {
96
+ @ Override
97
+ public void onActivate (@ Nonnull Experiment experiment , @ Nonnull String userId , @ Nonnull Map <String , String > attributes , @ Nonnull Variation variation , @ Nonnull LogEvent event ) {
98
+ activateNotificationListenerInterface .onActivate (experiment , userId , attributes , variation , event );
99
+ }
100
+ });
101
+ }
102
+ }
103
+
104
+ /**
105
+ * Convenience method to support lambdas as callbacks in later versions of Java (8+)
106
+ * @param trackNotificationListenerInterface
107
+ * @return greater than zero if added.
108
+ */
109
+ public int addTrackNotificationListener (final TrackNotificationListenerInterface trackNotificationListenerInterface ) {
110
+ if (trackNotificationListenerInterface instanceof TrackNotificationListener ) {
111
+ return addNotificationListener (NotificationType .Activate , (NotificationListener )trackNotificationListenerInterface );
112
+ }
113
+ else {
114
+ return addNotificationListener (NotificationType .Track , new TrackNotificationListener () {
115
+ @ Override
116
+ public void onTrack (@ Nonnull String eventKey , @ Nonnull String userId , @ Nonnull Map <String , String > attributes , @ Nonnull Map <String , ?> eventTags , @ Nonnull LogEvent event ) {
117
+ trackNotificationListenerInterface .onTrack (eventKey , userId , attributes , eventTags , event );
118
+ }
119
+ });
120
+ }
121
+ }
81
122
82
123
/**
83
124
* Add a notification listener to the notification center.
@@ -86,7 +127,7 @@ public NotificationCenter() {
86
127
* @param notificationListener - Notification to add.
87
128
* @return the notification id used to remove the notification. It is greater than 0 on success.
88
129
*/
89
- public int addNotification (NotificationType notificationType , NotificationListener notificationListener ) {
130
+ public int addNotificationListener (NotificationType notificationType , NotificationListener notificationListener ) {
90
131
91
132
Class clazz = notificationType .notificationTypeClass ;
92
133
if (clazz == null || !clazz .isInstance (notificationListener )) {
@@ -107,11 +148,11 @@ public int addNotification(NotificationType notificationType, NotificationListen
107
148
}
108
149
109
150
/**
110
- * Remove the notification listener based on the notificationId passed back from addNotification .
151
+ * Remove the notification listener based on the notificationId passed back from addNotificationListener .
111
152
* @param notificationID the id passed back from add notification.
112
153
* @return true if removed otherwise false (if the notification is already registered, it returns false).
113
154
*/
114
- public boolean removeNotification (int notificationID ) {
155
+ public boolean removeNotificationListener (int notificationID ) {
115
156
for (NotificationType type : NotificationType .values ()) {
116
157
for (NotificationHolder holder : notificationsListeners .get (type )) {
117
158
if (holder .notificationId == notificationID ) {
@@ -130,17 +171,17 @@ public boolean removeNotification(int notificationID) {
130
171
/**
131
172
* Clear out all the notification listeners.
132
173
*/
133
- public void clearAllNotifications () {
174
+ public void clearAllNotificationListeners () {
134
175
for (NotificationType type : NotificationType .values ()) {
135
- clearNotifications (type );
176
+ clearNotificationListeners (type );
136
177
}
137
178
}
138
179
139
180
/**
140
181
* Clear notification listeners by notification type.
141
182
* @param notificationType type of notificationsListeners to remove.
142
183
*/
143
- public void clearNotifications (NotificationType notificationType ) {
184
+ public void clearNotificationListeners (NotificationType notificationType ) {
144
185
notificationsListeners .get (notificationType ).clear ();
145
186
}
146
187
0 commit comments