MDSAL-API Migration
[genius.git] / mdsalutil / mdsalutil-testutils / src / main / java / org / opendaylight / genius / datastoreutils / testutils / TestableDataTreeChangeListener.java
1 /*
2  * Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.genius.datastoreutils.testutils;
9
10 import java.util.Collection;
11 import org.opendaylight.mdsal.binding.api.DataTreeChangeListener;
12
13 /**
14  * DataTreeChangeListener useful for testing in asynchronous scenarios.
15  *
16  * @author Michael Vorburger.ch
17  */
18 @SuppressWarnings("rawtypes")
19 public class TestableDataTreeChangeListener
20         extends AbstractTestableListener
21         implements DataTreeChangeListener {
22
23     @Override
24     public void onDataTreeChanged(Collection changes) {
25         consumedEvents(changes.size());
26     }
27
28 }