Interface BindingAwareBroker.RoutedRpcRegistration<T extends RpcService>
-
- Type Parameters:
T
- the implemented RPC service interface
- All Superinterfaces:
AutoCloseable
,BindingAwareBroker.RpcRegistration<T>
,ObjectRegistration<T>
,Registration
,RoutedRegistration<Class<? extends BaseIdentity>,InstanceIdentifier<?>,T>
- Enclosing interface:
- BindingAwareBroker
public static interface BindingAwareBroker.RoutedRpcRegistration<T extends RpcService> extends BindingAwareBroker.RpcRegistration<T>, RoutedRegistration<Class<? extends BaseIdentity>,InstanceIdentifier<?>,T>
Represents a routed RPC implementation registration. Users should call theclose
method when the registration is no longer needed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
registerInstance(Class<? extends BaseIdentity> context, InstanceIdentifier<?> instance)
Deprecated.in favor of RoutedRegistration#registerPath(Object, Object).void
unregisterInstance(Class<? extends BaseIdentity> context, InstanceIdentifier<?> instance)
Deprecated.in favor of RoutedRegistration#unregisterPath(Class, InstanceIdentifier).-
Methods inherited from interface org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration
close, getServiceType
-
Methods inherited from interface org.opendaylight.yangtools.concepts.ObjectRegistration
getInstance
-
Methods inherited from interface org.opendaylight.controller.md.sal.common.api.routing.RoutedRegistration
close, registerPath, unregisterPath
-
-
-
-
Method Detail
-
registerInstance
@Deprecated void registerInstance(Class<? extends BaseIdentity> context, InstanceIdentifier<?> instance)
Deprecated.in favor of RoutedRegistration#registerPath(Object, Object).Register particular instance identifier to be processed by this RpcService.
-
unregisterInstance
@Deprecated void unregisterInstance(Class<? extends BaseIdentity> context, InstanceIdentifier<?> instance)
Deprecated.in favor of RoutedRegistration#unregisterPath(Class, InstanceIdentifier).Unregister particular instance identifier to be processed by this RpcService.
-
-