Improve cleanup after device disconnected event
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / rpc / RpcContext.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.rpc;
9
10 import org.opendaylight.openflowplugin.api.openflow.OFPContext;
11 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
12 import org.opendaylight.yangtools.yang.binding.RpcService;
13
14 /**
15  * This context is registered with MD-SAL as a routed RPC provider for the inventory node backed by this switch and
16  * tracks the state of any user requests and how they map onto protocol requests. It uses
17  * {@link org.opendaylight.openflowplugin.api.openflow.device.RequestContext} to perform requests.
18  * <p>
19  */
20 public interface RpcContext extends RequestContextStack, OFPContext {
21     <S extends RpcService> void registerRpcServiceImplementation(Class<S> serviceClass, S serviceInstance);
22
23     <S extends RpcService> S lookupRpcService(Class<S> serviceClass);
24     <S extends RpcService> void unregisterRpcServiceImplementation(Class<S> serviceClass);
25
26     void setStatisticsRpcEnabled(boolean isStatisticsRpcEnabled);
27 }