本文整理汇总了Java中org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration类的典型用法代码示例。如果您正苦于以下问题:Java RpcRegistration类的具体用法?Java RpcRegistration怎么用?Java RpcRegistration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RpcRegistration类属于org.opendaylight.controller.sal.binding.api.BindingAwareBroker包,在下文中一共展示了RpcRegistration类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: constructorTestHelper
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
private void constructorTestHelper(){
aggregatorRpcReg = mock(RpcRegistration.class);
EventSourceService eventSourceService = mock(EventSourceService.class);
doReturn(aggregatorRpcReg).when(rpcProviderRegistryMock).addRpcImplementation(eq(EventAggregatorService.class), any(EventSourceTopology.class));
doReturn(eventSourceService).when(rpcProviderRegistryMock).getRpcService(EventSourceService.class);
WriteTransaction writeTransactionMock = mock(WriteTransaction.class);
doReturn(writeTransactionMock).when(dataBrokerMock).newWriteOnlyTransaction();
doNothing().when(writeTransactionMock).put(any(LogicalDatastoreType.class), any(InstanceIdentifier.class), any(DataObject.class),eq(true));
CheckedFuture checkedFutureMock = mock(CheckedFuture.class);
doReturn(checkedFutureMock).when(writeTransactionMock).submit();
}
示例2: destroy
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
public void destroy() {
for (RpcRegistration<RpcService> reg: rpcRegistrations) {
reg.close();
}
}
示例3: addRpcImplementation
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
@Override
public <T extends RpcService> RpcRegistration<T> addRpcImplementation(final Class<T> type, final T implementation)
throws IllegalStateException {
return getRpcRegistryChecked().addRpcImplementation(type, implementation);
}
示例4: addRpcImplementation
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
@Override
public <T extends RpcService> RpcRegistration<T> addRpcImplementation(Class<T> type, T implementation)
throws IllegalStateException {
return getSALService(RpcProviderRegistry.class).addRpcImplementation(type, implementation);
}
示例5: addRpcImplementation
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
@Override
public <T extends RpcService> RpcRegistration<T> addRpcImplementation(final Class<T> type, final T impl)
throws IllegalStateException {
final ObjectRegistration<T> reg = providerAdapter.registerRpcImplementation(type, impl);
return new DelegatedRootRpcRegistration<>(type,reg);
}
示例6: addRpcImplementation
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
/**
* Registers a global implementation of the provided RPC service interface.
* All methods of the interface are required to be implemented.
*
* @param serviceInterface the YANG-generated interface of the RPC Service for which to register.
* @param implementation "the implementation of the RPC service interface.
* @return an RpcRegistration instance that should be used to unregister the RPC implementation
* when no longer needed by calling {@link RpcRegistration#close()}.
*
* @throws IllegalStateException
* if the supplied RPC interface is a routed RPC type.
*/
<T extends RpcService> RpcRegistration<T> addRpcImplementation(Class<T> serviceInterface, T implementation)
throws IllegalStateException;