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 java.util.Optional<java.lang.Double>
getPostFecBer(DeviceId deviceId, PortNumber port)
Get the BER value post FEC.java.util.Optional<java.lang.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
java.util.Optional<java.lang.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
java.util.Optional<java.lang.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
-
-