# Link latency information

Source: [https://docs.qualcomm.com/doc/80-PK177-134/topic/link_latency_information.html](https://docs.qualcomm.com/doc/80-PK177-134/topic/link_latency_information.html)

Callback receives various link latency information entries.

## Java

    public interface IlinkLatencyInfoCallback { void onValues() }Copy to clipboard

## Native

    typedef void (*lle_LinkLatencyInfoCallback) () Copy to clipboard

## Parameters

| Parameter | API type | Data type | Description |
| --- | --- | --- | --- |
| statusCode | Java | LinkLatencyInfoStatusCode enum | Status of current estimation report (LinkLatencyInfoStatusCode). Essentially<br>                                functions as an error code if failure happened. If status is<br>                                anything other than success, then the rest of the arguments should<br>                                not be used. |
| Native | lle\_LinkLatencyInfoStatusCode enum |
| ul | Java | LinkLatencyInfoDirection | Estimation data for uplink, see Direction information for<br>                                details |
| Native | lle\_LinkLatencyInfoDirection |
| dl | Java | LinkLatencyInfoDirection | Estimation data for downlink, see Direction information for<br>                                details |
| Native | lle\_LinkLatencyInfoDirection |
| reportInterval | Java | long | Actual reporting interval which might differ from<br>                                interval configured with setReportingCriteria. |
| Native | uint32\_t |
| rat | Java | RatType | RAT type from<br>                                which this estimation report was collected. |
| Native | lle\_RatType |

**Parent Topic:** LLE subsystem callback interfaces

Last Published: Nov 14, 2024

Previous Topic
 
LLE subsystem callback interfaces Next Topic

LLE enums