当前位置: 首页>>代码示例>>Java>>正文


Java RpcRegistration类代码示例

本文整理汇总了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();
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:12,代码来源:EventSourceTopologyTest.java

示例2: destroy

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration; //导入依赖的package包/类
public void destroy() {
    for (RpcRegistration<RpcService> reg: rpcRegistrations) {
        reg.close();
    }
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:6,代码来源:RpcImplementationBean.java

示例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);
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:6,代码来源:AbstractBindingSalProviderInstance.java

示例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);
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:6,代码来源:BindingContextUtils.java

示例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);
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:7,代码来源:HeliumRpcProviderRegistry.java

示例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;
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:15,代码来源:RpcProviderRegistry.java


注:本文中的org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。