Package org.onosproject.net.behaviour
Interface BitErrorRateState
-
- All Superinterfaces:
Behaviour
,HandlerBehaviour
public interface BitErrorRateState extends HandlerBehaviour
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Double>
getPostFecBer(DeviceId deviceId, PortNumber port)
Get the BER value post FEC.Optional<Double>
getPreFecBer(DeviceId deviceId, PortNumber port)
Get the BER value pre FEC.-
Methods inherited from interface org.onosproject.net.driver.HandlerBehaviour
handler, setHandler
-
-
-
-
Method Detail
-
getPreFecBer
Optional<Double> getPreFecBer(DeviceId deviceId, PortNumber port)
Get the BER value pre FEC.- Parameters:
deviceId
- the device identifierport
- the port identifier- Returns:
- the decimal value of BER
-
getPostFecBer
Optional<Double> getPostFecBer(DeviceId deviceId, PortNumber port)
Get the BER value post FEC.- Parameters:
deviceId
- the device identifierport
- the port identifier- Returns:
- the decimal value of BER
-
-