blob: f94fd6f57cf092c6d7d5d9ebbb33cd87228cb4f9 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent.impl;
tom95329eb2014-10-06 08:40:06 -070017
Brian O'Connor86f6f7f2014-12-01 17:02:45 -080018import com.google.common.collect.HashMultimap;
Brian O'Connora9c18b92015-09-28 16:03:43 -070019import com.google.common.collect.ImmutableSet;
Brian O'Connor86f6f7f2014-12-01 17:02:45 -080020import com.google.common.collect.SetMultimap;
tom95329eb2014-10-06 08:40:06 -070021import org.apache.felix.scr.annotations.Activate;
22import org.apache.felix.scr.annotations.Component;
23import org.apache.felix.scr.annotations.Deactivate;
24import org.apache.felix.scr.annotations.Reference;
25import org.apache.felix.scr.annotations.ReferenceCardinality;
Brian O'Connor69d6ac72015-05-29 16:24:06 -070026import org.apache.felix.scr.annotations.ReferencePolicy;
tom95329eb2014-10-06 08:40:06 -070027import org.apache.felix.scr.annotations.Service;
Brian O'Connorabafb502014-12-02 22:26:20 -080028import org.onosproject.event.Event;
Brian O'Connorb5dcc512015-03-24 17:28:00 -070029import org.onosproject.net.DeviceId;
30import org.onosproject.net.ElementId;
31import org.onosproject.net.HostId;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.net.Link;
33import org.onosproject.net.LinkKey;
34import org.onosproject.net.NetworkResource;
Sho SHIMIZU44f37612015-11-25 16:23:22 -080035import org.onosproject.net.PortNumber;
Brian O'Connorb5dcc512015-03-24 17:28:00 -070036import org.onosproject.net.device.DeviceEvent;
37import org.onosproject.net.device.DeviceListener;
38import org.onosproject.net.device.DeviceService;
39import org.onosproject.net.host.HostEvent;
40import org.onosproject.net.host.HostListener;
41import org.onosproject.net.host.HostService;
Brian O'Connor69d6ac72015-05-29 16:24:06 -070042import org.onosproject.net.intent.Intent;
Thomas Vachuskac46af202015-06-03 16:43:27 -070043import org.onosproject.net.intent.IntentData;
Brian O'Connorabafb502014-12-02 22:26:20 -080044import org.onosproject.net.intent.IntentService;
Ray Milkeyf9af43c2015-02-09 16:45:48 -080045import org.onosproject.net.intent.Key;
Yi Tseng24d9be72017-05-12 11:28:13 -070046import org.onosproject.net.intent.ObjectiveTrackerService;
47import org.onosproject.net.intent.TopologyChangeDelegate;
Madan Jampani3b8101a2016-09-15 13:22:01 -070048import org.onosproject.net.intent.WorkPartitionEvent;
49import org.onosproject.net.intent.WorkPartitionEventListener;
50import org.onosproject.net.intent.WorkPartitionService;
Brian O'Connorabafb502014-12-02 22:26:20 -080051import org.onosproject.net.link.LinkEvent;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080052import org.onosproject.net.resource.ResourceEvent;
53import org.onosproject.net.resource.ResourceListener;
54import org.onosproject.net.resource.ResourceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080055import org.onosproject.net.topology.TopologyEvent;
56import org.onosproject.net.topology.TopologyListener;
57import org.onosproject.net.topology.TopologyService;
tom95329eb2014-10-06 08:40:06 -070058import org.slf4j.Logger;
59
Brian O'Connor86f6f7f2014-12-01 17:02:45 -080060import java.util.Collection;
Brian O'Connorb5dcc512015-03-24 17:28:00 -070061import java.util.Collections;
Brian O'Connor86f6f7f2014-12-01 17:02:45 -080062import java.util.HashSet;
Thomas Vachuskac46af202015-06-03 16:43:27 -070063import java.util.List;
Brian O'Connor86f6f7f2014-12-01 17:02:45 -080064import java.util.Set;
65import java.util.concurrent.ExecutorService;
Brian O'Connor69d6ac72015-05-29 16:24:06 -070066import java.util.concurrent.ScheduledExecutorService;
67import java.util.concurrent.TimeUnit;
68import java.util.concurrent.atomic.AtomicBoolean;
tom95329eb2014-10-06 08:40:06 -070069
70import static com.google.common.base.Preconditions.checkArgument;
71import static com.google.common.base.Preconditions.checkNotNull;
72import static com.google.common.collect.Multimaps.synchronizedSetMultimap;
Yuta HIGUCHI1624df12016-07-21 16:54:33 -070073import static java.util.concurrent.Executors.newScheduledThreadPool;
tom95329eb2014-10-06 08:40:06 -070074import static java.util.concurrent.Executors.newSingleThreadExecutor;
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080075import static org.onlab.util.Tools.groupedThreads;
Thomas Vachuskac46af202015-06-03 16:43:27 -070076import static org.onlab.util.Tools.isNullOrEmpty;
Brian O'Connorabafb502014-12-02 22:26:20 -080077import static org.onosproject.net.LinkKey.linkKey;
Thomas Vachuskac46af202015-06-03 16:43:27 -070078import static org.onosproject.net.intent.IntentState.INSTALLED;
Brian O'Connor690fd1c2015-06-04 19:50:33 -070079import static org.onosproject.net.intent.IntentState.INSTALLING;
Brian O'Connorabafb502014-12-02 22:26:20 -080080import static org.onosproject.net.link.LinkEvent.Type.LINK_REMOVED;
81import static org.onosproject.net.link.LinkEvent.Type.LINK_UPDATED;
tom95329eb2014-10-06 08:40:06 -070082import static org.slf4j.LoggerFactory.getLogger;
83
84/**
85 * Entity responsible for tracking installed flows and for monitoring topology
86 * events to determine what flows are affected by topology changes.
87 */
Ray Milkeye97ede92014-11-20 10:43:12 -080088@Component(immediate = true)
tom95329eb2014-10-06 08:40:06 -070089@Service
tom85258ee2014-10-07 00:10:02 -070090public class ObjectiveTracker implements ObjectiveTrackerService {
tom95329eb2014-10-06 08:40:06 -070091
92 private final Logger log = getLogger(getClass());
93
Ray Milkeyf9af43c2015-02-09 16:45:48 -080094 private final SetMultimap<LinkKey, Key> intentsByLink =
Brian O'Connor64a0369d2015-02-20 22:02:59 -080095 //TODO this could be slow as a point of synchronization
Ray Milkeyf9af43c2015-02-09 16:45:48 -080096 synchronizedSetMultimap(HashMultimap.<LinkKey, Key>create());
tom95329eb2014-10-06 08:40:06 -070097
Brian O'Connorb5dcc512015-03-24 17:28:00 -070098 private final SetMultimap<ElementId, Key> intentsByDevice =
99 synchronizedSetMultimap(HashMultimap.<ElementId, Key>create());
100
tom95329eb2014-10-06 08:40:06 -0700101 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
102 protected TopologyService topologyService;
103
Ray Milkeye97ede92014-11-20 10:43:12 -0800104 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800105 protected ResourceService resourceService;
Ray Milkeye97ede92014-11-20 10:43:12 -0800106
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700107 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
108 protected DeviceService deviceService;
109
110 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
111 protected HostService hostService;
112
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700113 @Reference(cardinality = ReferenceCardinality.OPTIONAL_UNARY,
114 policy = ReferencePolicy.DYNAMIC)
Brian O'Connor86f6f7f2014-12-01 17:02:45 -0800115 protected IntentService intentService;
116
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700117 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Madan Jampani3b8101a2016-09-15 13:22:01 -0700118 protected WorkPartitionService partitionService;
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700119
tom95329eb2014-10-06 08:40:06 -0700120 private ExecutorService executorService =
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700121 newSingleThreadExecutor(groupedThreads("onos/intent", "objectivetracker", log));
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700122 private ScheduledExecutorService executor =
123 newScheduledThreadPool(1, groupedThreads("onos/intent", "scheduledIntentUpdate", log));
tom95329eb2014-10-06 08:40:06 -0700124
125 private TopologyListener listener = new InternalTopologyListener();
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800126 private ResourceListener resourceListener = new InternalResourceListener();
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700127 private DeviceListener deviceListener = new InternalDeviceListener();
128 private HostListener hostListener = new InternalHostListener();
Madan Jampani3b8101a2016-09-15 13:22:01 -0700129 private WorkPartitionEventListener partitionListener = new InternalPartitionListener();
tom95329eb2014-10-06 08:40:06 -0700130 private TopologyChangeDelegate delegate;
131
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700132 protected final AtomicBoolean updateScheduled = new AtomicBoolean(false);
133
tom95329eb2014-10-06 08:40:06 -0700134 @Activate
135 public void activate() {
136 topologyService.addListener(listener);
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800137 resourceService.addListener(resourceListener);
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700138 deviceService.addListener(deviceListener);
139 hostService.addListener(hostListener);
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700140 partitionService.addListener(partitionListener);
tom95329eb2014-10-06 08:40:06 -0700141 log.info("Started");
142 }
143
144 @Deactivate
145 public void deactivate() {
146 topologyService.removeListener(listener);
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800147 resourceService.removeListener(resourceListener);
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700148 deviceService.removeListener(deviceListener);
149 hostService.removeListener(hostListener);
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700150 partitionService.removeListener(partitionListener);
tom95329eb2014-10-06 08:40:06 -0700151 log.info("Stopped");
152 }
153
Brian O'Connor5d55ed42014-12-01 18:27:47 -0800154 protected void bindIntentService(IntentService service) {
155 if (intentService == null) {
156 intentService = service;
157 }
158 }
159
160 protected void unbindIntentService(IntentService service) {
161 if (intentService == service) {
162 intentService = null;
163 }
164 }
165
tom95329eb2014-10-06 08:40:06 -0700166 @Override
167 public void setDelegate(TopologyChangeDelegate delegate) {
168 checkNotNull(delegate, "Delegate cannot be null");
169 checkArgument(this.delegate == null || this.delegate == delegate,
170 "Another delegate already set");
171 this.delegate = delegate;
172 }
173
174 @Override
175 public void unsetDelegate(TopologyChangeDelegate delegate) {
176 checkArgument(this.delegate == delegate, "Not the current delegate");
177 this.delegate = null;
178 }
179
180 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800181 public void addTrackedResources(Key intentKey,
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700182 Collection<NetworkResource> resources) {
183 for (NetworkResource resource : resources) {
184 if (resource instanceof Link) {
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800185 intentsByLink.put(linkKey((Link) resource), intentKey);
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700186 } else if (resource instanceof ElementId) {
187 intentsByDevice.put((ElementId) resource, intentKey);
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700188 }
tom95329eb2014-10-06 08:40:06 -0700189 }
190 }
191
192 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800193 public void removeTrackedResources(Key intentKey,
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700194 Collection<NetworkResource> resources) {
195 for (NetworkResource resource : resources) {
196 if (resource instanceof Link) {
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800197 intentsByLink.remove(linkKey((Link) resource), intentKey);
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700198 } else if (resource instanceof ElementId) {
Sho SHIMIZUd82a4e62015-09-09 14:53:46 -0700199 intentsByDevice.remove(resource, intentKey);
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700200 }
tom95329eb2014-10-06 08:40:06 -0700201 }
202 }
203
Thomas Vachuskac46af202015-06-03 16:43:27 -0700204 @Override
205 public void trackIntent(IntentData intentData) {
206
207 //NOTE: This will be called for intents that are being added to the store
208 // locally (i.e. every intent update)
209
210 Key key = intentData.key();
211 Intent intent = intentData.intent();
212 boolean isLocal = intentService.isLocal(key);
Brian O'Connor690fd1c2015-06-04 19:50:33 -0700213 boolean isInstalled = intentData.state() == INSTALLING ||
214 intentData.state() == INSTALLED;
Thomas Vachuskac46af202015-06-03 16:43:27 -0700215 List<Intent> installables = intentData.installables();
216
217 if (log.isTraceEnabled()) {
218 log.trace("intent {}, old: {}, new: {}, installableCount: {}, resourceCount: {}",
219 key,
220 intentsByDevice.values().contains(key),
Brian O'Connor690fd1c2015-06-04 19:50:33 -0700221 isLocal && isInstalled,
Thomas Vachuskac46af202015-06-03 16:43:27 -0700222 installables.size(),
223 intent.resources().size() +
224 installables.stream()
225 .mapToLong(i -> i.resources().size()).sum());
226 }
227
228 if (isNullOrEmpty(installables) && intentData.state() == INSTALLED) {
229 log.warn("Intent {} is INSTALLED with no installables", key);
230 }
231
Brian O'Connor690fd1c2015-06-04 19:50:33 -0700232 // FIXME Intents will be added 3 times (once directly using addTracked,
233 // then when installing and when installed)
234 if (isLocal && isInstalled) {
Thomas Vachuskac46af202015-06-03 16:43:27 -0700235 addTrackedResources(key, intent.resources());
236 for (Intent installable : installables) {
237 addTrackedResources(key, installable.resources());
238 }
239 // FIXME check all resources against current topo service(s); recompile if necessary
240 } else {
241 removeTrackedResources(key, intent.resources());
242 for (Intent installable : installables) {
243 removeTrackedResources(key, installable.resources());
244 }
245 }
246 }
247
tom95329eb2014-10-06 08:40:06 -0700248 // Internal re-actor to topology change events.
249 private class InternalTopologyListener implements TopologyListener {
250 @Override
251 public void event(TopologyEvent event) {
252 executorService.execute(new TopologyChangeHandler(event));
253 }
254 }
255
256 // Re-dispatcher of topology change events.
257 private class TopologyChangeHandler implements Runnable {
258
259 private final TopologyEvent event;
260
261 TopologyChangeHandler(TopologyEvent event) {
262 this.event = event;
263 }
264
265 @Override
266 public void run() {
Thomas Vachuska7b652ad2014-10-30 14:10:51 -0700267 // If there is no delegate, why bother? Just bail.
268 if (delegate == null) {
269 return;
270 }
271
Ray Milkey7c44c052014-12-05 10:34:54 -0800272 if (event.reasons() == null || event.reasons().isEmpty()) {
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700273 delegate.triggerCompile(Collections.emptySet(), true);
tom85258ee2014-10-07 00:10:02 -0700274
tom95329eb2014-10-06 08:40:06 -0700275 } else {
Jonathan Hart96c5a4a2015-07-31 14:23:33 -0700276 Set<Key> intentsToRecompile = new HashSet<>();
277 boolean dontRecompileAllFailedIntents = true;
tom85258ee2014-10-07 00:10:02 -0700278
279 // Scan through the list of reasons and keep accruing all
280 // intents that need to be recompiled.
tom95329eb2014-10-06 08:40:06 -0700281 for (Event reason : event.reasons()) {
282 if (reason instanceof LinkEvent) {
283 LinkEvent linkEvent = (LinkEvent) reason;
Jonathan Hart96c5a4a2015-07-31 14:23:33 -0700284 final LinkKey linkKey = linkKey(linkEvent.subject());
285 synchronized (intentsByLink) {
286 Set<Key> intentKeys = intentsByLink.get(linkKey);
287 log.debug("recompile triggered by LinkEvent {} ({}) for {}",
288 linkKey, linkEvent.type(), intentKeys);
289 intentsToRecompile.addAll(intentKeys);
tom85258ee2014-10-07 00:10:02 -0700290 }
Jonathan Hart96c5a4a2015-07-31 14:23:33 -0700291 dontRecompileAllFailedIntents = dontRecompileAllFailedIntents &&
Praseed Balakrishnan00dd1f92014-11-19 17:12:36 -0800292 (linkEvent.type() == LINK_REMOVED ||
293 (linkEvent.type() == LINK_UPDATED &&
Ray Milkey8521f812017-05-24 09:49:26 -0700294 linkEvent.subject().isExpected()));
tom95329eb2014-10-06 08:40:06 -0700295 }
296 }
Jonathan Hart96c5a4a2015-07-31 14:23:33 -0700297 delegate.triggerCompile(intentsToRecompile, !dontRecompileAllFailedIntents);
tom95329eb2014-10-06 08:40:06 -0700298 }
299 }
300 }
301
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800302 private class InternalResourceListener implements ResourceListener {
Ray Milkeye97ede92014-11-20 10:43:12 -0800303 @Override
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800304 public void event(ResourceEvent event) {
Sho SHIMIZUb08d5862016-02-11 12:37:28 -0800305 if (event.subject().isSubTypeOf(PortNumber.class)) {
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800306 executorService.execute(() -> {
307 if (delegate == null) {
308 return;
309 }
Ray Milkeye97ede92014-11-20 10:43:12 -0800310
Sho SHIMIZU0b9c4682015-11-02 18:30:34 -0800311 delegate.triggerCompile(Collections.emptySet(), true);
312 });
Ray Milkeye97ede92014-11-20 10:43:12 -0800313 }
Ray Milkeye97ede92014-11-20 10:43:12 -0800314 }
315 }
316
Brian O'Connor72a034c2014-11-26 18:24:23 -0800317 //TODO consider adding flow rule event tracking
Ray Milkeye97ede92014-11-20 10:43:12 -0800318
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700319 /*
320 * Re-dispatcher of device and host events.
321 */
322 private class DeviceAvailabilityHandler implements Runnable {
323
324 private final ElementId id;
325 private final boolean available;
326
327 DeviceAvailabilityHandler(ElementId id, boolean available) {
328 this.id = checkNotNull(id);
329 this.available = available;
330 }
331
332 @Override
333 public void run() {
334 // If there is no delegate, why bother? Just bail.
335 if (delegate == null) {
336 return;
337 }
338
339 // TODO should we recompile on available==true?
HIGUCHI Yuta99b7b342015-09-29 16:54:21 -0700340
341 final ImmutableSet<Key> snapshot;
342 synchronized (intentsByDevice) {
343 snapshot = ImmutableSet.copyOf(intentsByDevice.get(id));
344 }
345 delegate.triggerCompile(snapshot, available);
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700346 }
347 }
348
349
350 private class InternalDeviceListener implements DeviceListener {
351 @Override
352 public void event(DeviceEvent event) {
353 DeviceEvent.Type type = event.type();
Jonathan Hart94470fe2015-07-31 11:41:10 -0700354 switch (type) {
355 case DEVICE_ADDED:
356 case DEVICE_AVAILABILITY_CHANGED:
357 case DEVICE_REMOVED:
358 case DEVICE_SUSPENDED:
359 case DEVICE_UPDATED:
360 DeviceId id = event.subject().id();
361 // TODO we need to check whether AVAILABILITY_CHANGED means up or down
362 boolean available = (type == DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED ||
363 type == DeviceEvent.Type.DEVICE_ADDED ||
364 type == DeviceEvent.Type.DEVICE_UPDATED);
365 executorService.execute(new DeviceAvailabilityHandler(id, available));
366 break;
367 case PORT_ADDED:
368 case PORT_REMOVED:
369 case PORT_UPDATED:
370 case PORT_STATS_UPDATED:
371 default:
372 // Don't handle port events for now
373 break;
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700374 }
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700375 }
376 }
377
378 private class InternalHostListener implements HostListener {
379 @Override
380 public void event(HostEvent event) {
381 HostId id = event.subject().id();
Brian O'Connora9c18b92015-09-28 16:03:43 -0700382 switch (event.type()) {
383 case HOST_ADDED:
384 case HOST_MOVED:
385 case HOST_REMOVED:
386 executorService.execute(new DeviceAvailabilityHandler(id, false));
387 break;
388 case HOST_UPDATED:
389 default:
390 // DO NOTHING
391 break;
392 }
Brian O'Connorb5dcc512015-03-24 17:28:00 -0700393 }
394 }
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700395
Sho SHIMIZU97a93dd2016-03-30 18:07:51 -0700396 private void doIntentUpdate() {
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700397 updateScheduled.set(false);
398 if (intentService == null) {
399 log.warn("Intent service is not bound yet");
400 return;
401 }
402 try {
403 //FIXME very inefficient
Thomas Vachuskac46af202015-06-03 16:43:27 -0700404 for (IntentData intentData : intentService.getIntentData()) {
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700405 try {
Thomas Vachuskac46af202015-06-03 16:43:27 -0700406 trackIntent(intentData);
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700407 } catch (NullPointerException npe) {
Thomas Vachuskac46af202015-06-03 16:43:27 -0700408 log.warn("intent error {}", intentData.key(), npe);
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700409 }
410 }
411 } catch (Exception e) {
412 log.warn("Exception caught during update task", e);
413 }
414 }
415
416 private void scheduleIntentUpdate(int afterDelaySec) {
417 if (updateScheduled.compareAndSet(false, true)) {
418 executor.schedule(this::doIntentUpdate, afterDelaySec, TimeUnit.SECONDS);
419 }
420 }
421
Madan Jampani3b8101a2016-09-15 13:22:01 -0700422 private final class InternalPartitionListener implements WorkPartitionEventListener {
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700423 @Override
Madan Jampani3b8101a2016-09-15 13:22:01 -0700424 public void event(WorkPartitionEvent event) {
Jon Hall274cecb2017-08-09 12:15:48 -0700425 log.debug("got message {}:{}", event.type(), event.subject());
Brian O'Connor69d6ac72015-05-29 16:24:06 -0700426 scheduleIntentUpdate(1);
427 }
428 }
tom95329eb2014-10-06 08:40:06 -0700429}