Class OpendaylightDirectStatisticsServiceImpl
- java.lang.Object
-
- org.opendaylight.openflowplugin.impl.statistics.services.direct.OpendaylightDirectStatisticsServiceImpl
-
- All Implemented Interfaces:
OpendaylightDirectStatisticsService
,org.opendaylight.yangtools.yang.binding.RpcService
public class OpendaylightDirectStatisticsServiceImpl extends Object implements OpendaylightDirectStatisticsService
The Opendaylight direct statistics service. This service handles RPC requests, sends them to registered handlers and returns their replies.
-
-
Constructor Summary
Constructors Constructor Description OpendaylightDirectStatisticsServiceImpl(OpendaylightDirectStatisticsServiceProvider provider)
Instantiates a new Opendaylight direct statistics service.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetFlowStatisticsOutput>>
getFlowStatistics(GetFlowStatisticsInput input)
Get statistics for given flowcom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetGroupStatisticsOutput>>
getGroupStatistics(GetGroupStatisticsInput input)
Get statistics for given groupcom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetMeterStatisticsOutput>>
getMeterStatistics(GetMeterStatisticsInput input)
Get statistics for given metercom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetNodeConnectorStatisticsOutput>>
getNodeConnectorStatistics(GetNodeConnectorStatisticsInput input)
Get statistics for given node connector from the nodecom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetQueueStatisticsOutput>>
getQueueStatistics(GetQueueStatisticsInput input)
Get statistics for given queues from given port of the node
-
-
-
Constructor Detail
-
OpendaylightDirectStatisticsServiceImpl
public OpendaylightDirectStatisticsServiceImpl(OpendaylightDirectStatisticsServiceProvider provider)
Instantiates a new Opendaylight direct statistics service.- Parameters:
provider
- the openflow direct statistics service provider
-
-
Method Detail
-
getGroupStatistics
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetGroupStatisticsOutput>> getGroupStatistics(GetGroupStatisticsInput input)
Description copied from interface:OpendaylightDirectStatisticsService
Get statistics for given group- Specified by:
getGroupStatistics
in interfaceOpendaylightDirectStatisticsService
-
getQueueStatistics
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetQueueStatisticsOutput>> getQueueStatistics(GetQueueStatisticsInput input)
Description copied from interface:OpendaylightDirectStatisticsService
Get statistics for given queues from given port of the node- Specified by:
getQueueStatistics
in interfaceOpendaylightDirectStatisticsService
-
getFlowStatistics
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetFlowStatisticsOutput>> getFlowStatistics(GetFlowStatisticsInput input)
Description copied from interface:OpendaylightDirectStatisticsService
Get statistics for given flow- Specified by:
getFlowStatistics
in interfaceOpendaylightDirectStatisticsService
-
getMeterStatistics
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetMeterStatisticsOutput>> getMeterStatistics(GetMeterStatisticsInput input)
Description copied from interface:OpendaylightDirectStatisticsService
Get statistics for given meter- Specified by:
getMeterStatistics
in interfaceOpendaylightDirectStatisticsService
-
getNodeConnectorStatistics
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetNodeConnectorStatisticsOutput>> getNodeConnectorStatistics(GetNodeConnectorStatisticsInput input)
Description copied from interface:OpendaylightDirectStatisticsService
Get statistics for given node connector from the node- Specified by:
getNodeConnectorStatistics
in interfaceOpendaylightDirectStatisticsService
-
-