Class BssAvgAccessDelay
- java.lang.Object
-
- com.facebook.openwifi.cloudsdk.ies.BssAvgAccessDelay
-
public class BssAvgAccessDelay extends Object
This information element (IE) appears in wifiscan entries. It's called "BSS Average Access Delay" in 802.11 specs (section 9.4.2.38). Refer to the specification for more details. Language in javadocs is taken from the specification.
-
-
Field Summary
Fields Modifier and Type Field Description short
apAvgAccessDelay
Unsigned 8 bits representing a scaled average medium access delay for all DCF and EDCAF frames transmitted, measured from the time it's ready for transmission to actual transmission start time.static int
TYPE
Defined in 802.11 table 9-92
-
Constructor Summary
Constructors Constructor Description BssAvgAccessDelay(short apAvgAccessDelay)
Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
hashCode()
static BssAvgAccessDelay
parse(com.google.gson.JsonObject contents)
Parse BssAvgAccessDelay from JSON object
-
-
-
Field Detail
-
TYPE
public static final int TYPE
Defined in 802.11 table 9-92- See Also:
- Constant Field Values
-
apAvgAccessDelay
public final short apAvgAccessDelay
Unsigned 8 bits representing a scaled average medium access delay for all DCF and EDCAF frames transmitted, measured from the time it's ready for transmission to actual transmission start time.
-
-