Merge "Fix for Bug 2727 - Upgrade Akka from 2.3.4 to 2.3.9"
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / RpcConsumptionRegistry.java
1 /*
2  * Copyright (c) 2014 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.controller.sal.core.api;
9
10 import java.util.concurrent.Future;
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.common.RpcResult;
13 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
14
15 /**
16  * @deprecated Use {@link org.opendaylight.controller.md.sal.dom.api.DOMRpcService} instead.
17  */
18 @Deprecated
19 public interface RpcConsumptionRegistry {
20     /**
21      * Sends an RPC to other components registered to the broker.
22      *
23      * @see RpcImplementation
24      * @param rpc
25      *            Name of RPC
26      * @param input
27      *            Input data to the RPC
28      * @return Result of the RPC call
29      */
30     Future<RpcResult<CompositeNode>> rpc(QName rpc, CompositeNode input);
31
32 }