Fix deprecation warnings and checkstyle in benchmarks
[controller.git] / benchmark / ntfbenchmark / src / main / java / ntfbenchmark / impl / NtfbenchWTCListener.java
1 /*
2  * Copyright (c) 2015 Cisco Systems 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 ntfbenchmark.impl;
9
10 import com.google.common.util.concurrent.SettableFuture;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ntfbench.payload.rev150709.Ntfbench;
12
13 public class NtfbenchWTCListener extends NtfbenchTestListener {
14     private final int expectedCount;
15     private final SettableFuture<?> allDone = SettableFuture.create();
16
17     public NtfbenchWTCListener(final int expectedSize, final int expectedCount) {
18         super(expectedSize);
19         this.expectedCount = expectedCount;
20     }
21
22     @Override
23     public void onNtfbench(final Ntfbench notification) {
24         // TODO Auto-generated method stub
25         super.onNtfbench(notification);
26         if (expectedCount == getReceived()) {
27             allDone.set(null);
28         }
29     }
30
31     @Override
32     public SettableFuture<?> getAllDone() {
33         return allDone;
34     }
35 }