@Beta public interface RpcActionConsumerRegistry extends BindingService
RPC/Action implementations are registered using the RpcActionProviderService
.
Modifier and Type | Method and Description |
---|---|
<T extends Action<? extends TreeNode,?,?,?>> |
getActionService(Class<T> serviceInterface)
Returns an implementation of a requested Action service.
|
<T extends ListAction<? extends TreeNode,?,?,?>> |
getListActionService(Class<T> serviceInterface)
Returns an implementation of a requested ListAction service.
|
<T extends Rpc<?,?>> |
getRpcService(Class<T> serviceInterface)
Returns an implementation of a requested RPC service.
|
<T extends Rpc<?,?>> T getRpcService(Class<T> serviceInterface)
The returned instance is not an actual implementation of the RPC service interface, but a proxy implementation of the interface that forwards to an actual implementation, if any.
T
- interface typeserviceInterface
- given service interface<T extends Action<? extends TreeNode,?,?,?>> T getActionService(Class<T> serviceInterface)
The returned instance is not an actual implementation of the Action service interface, but a proxy implementation of the interface that forwards to an actual implementation, if any.
T
- interface typeserviceInterface
- given service interface<T extends ListAction<? extends TreeNode,?,?,?>> T getListActionService(Class<T> serviceInterface)
The returned instance is not an actual implementation of the ListAction service interface, but a proxy implementation of the interface that forwards to an actual implementation, if any.
T
- interface typeserviceInterface
- given service interfaceCopyright © 2019 OpenDaylight. All rights reserved.