Switch to MD-SAL APIs
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / statistics / compatibility / BackwardCompatibleAtomicService.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, 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.openflowplugin.api.openflow.statistics.compatibility;
9
10 import com.google.common.util.concurrent.ListenableFuture;
11 import org.opendaylight.mdsal.binding.api.NotificationPublishService;
12 import org.opendaylight.yangtools.yang.common.RpcResult;
13
14 /**
15  * Prescribes handling and transforming of backward compatible services in order to provide simple to use service
16  * with notification support.
17  *
18  * @param <O> rpc input
19  * @param <I> rpc input
20  * @deprecated for backward compatibility only (expected to extinct after Be-release)
21  */
22 @Deprecated
23 public interface BackwardCompatibleAtomicService<I, O> {
24
25     /**
26      * process rpc request and publish corresponding notification upon success.
27      *
28      * @param input                      rpc input
29      * @param notificationPublishService publisher handle
30      */
31     ListenableFuture<RpcResult<O>> handleAndNotify(I input, NotificationPublishService notificationPublishService);
32 }