Interface OpendaylightMeterStatisticsService
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.RpcService
- All Known Implementing Classes:
OpendaylightMeterStatisticsServiceImpl
public interface OpendaylightMeterStatisticsService extends org.opendaylight.yangtools.yang.binding.RpcService
Interface for implementing the following YANG RPCs defined in module opendaylight-meter-statisticsrpc get-all-meter-statistics { status deprecated; input input { uses inv:node-context-ref; } output output { uses meter-types:meter-statistics-reply; uses tr:transaction-aware; } } rpc get-meter-statistics { status deprecated; input input { uses inv:node-context-ref; leaf meter-id { type meter-types:meter-id; } } output output { uses meter-types:meter-statistics-reply; uses tr:transaction-aware; } } rpc get-all-meter-config-statistics { status deprecated; input input { uses inv:node-context-ref; } output output { uses meter-types:meter-config-stats-reply; uses tr:transaction-aware; } } rpc get-meter-features { status deprecated; input input { uses inv:node-context-ref; } output output { uses meter-types:meter-features-reply; uses tr:transaction-aware; } }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetAllMeterConfigStatisticsOutput>>
getAllMeterConfigStatistics(GetAllMeterConfigStatisticsInput input)
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetAllMeterStatisticsOutput>>
getAllMeterStatistics(GetAllMeterStatisticsInput input)
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetMeterFeaturesOutput>>
getMeterFeatures(GetMeterFeaturesInput input)
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetMeterStatisticsOutput>>
getMeterStatistics(GetMeterStatisticsInput input)
-
-
-
Method Detail
-
getAllMeterStatistics
@CheckReturnValue com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetAllMeterStatisticsOutput>> getAllMeterStatistics(GetAllMeterStatisticsInput input)
-
getMeterStatistics
@CheckReturnValue com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetMeterStatisticsOutput>> getMeterStatistics(GetMeterStatisticsInput input)
-
getAllMeterConfigStatistics
@CheckReturnValue com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetAllMeterConfigStatisticsOutput>> getAllMeterConfigStatistics(GetAllMeterConfigStatisticsInput input)
-
getMeterFeatures
@CheckReturnValue com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetMeterFeaturesOutput>> getMeterFeatures(GetMeterFeaturesInput input)
-
-