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