Implementation for enabling remote rpc calls between 2 instances of md-sal
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / implementation / src / main / java / org / opendaylight / controller / sal / connector / remoterpc / RemoteRpcClient.java
1 package org.opendaylight.controller.sal.connector.remoterpc;
2
3 import org.opendaylight.controller.sal.core.api.RpcImplementation;
4
5 public interface RemoteRpcClient extends RpcImplementation,AutoCloseable{
6
7
8     void setRoutingTableProvider(RoutingTableProvider provider);
9     
10     void stop();
11     
12     void start();
13 }