# Link interrupt indication

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

Callback receives link interrupt states and extra data associated to certain states.
        Depending on the indication type (prehandoff or actual handoff) only some fields in the
        returned data structures are valid.

## Java

    ILinkInterruptIndication { void onValues(); }Copy to clipboard

## Native

    typedef void (*lli_LinkInterruptIndication)();Copy to clipboard

## Parameters

| Parameter | API type | Data type | Description |
| --- | --- | --- | --- |
| indicationType | Java | HandoffIndicationType enum | Indication if this is pre-handoff or actual handoff<br>                                related report ([HandoffIndicationType](https://docs.qualcomm.com/doc/80-PK177-134/topic/handoff_indication_type.html)). |
| indicationType | Native | lli\_HandoffIndicationType enum | Indication if this is pre-handoff or actual handoff<br>                                related report ([HandoffIndicationType](https://docs.qualcomm.com/doc/80-PK177-134/topic/handoff_indication_type.html)). |
| preHandoffState | Java | PreHandoffState | Pre-handoff state. Field is only valid if<br>                                indicationType is PRE\_HANDOFF. [handoffInfo](https://docs.qualcomm.com/doc/80-PK177-134/topic/handoff_info.html) arguments are unused and should not be<br>                                used. |
| preHandoffState | Native | lli\_PreHandoffState | Pre-handoff state. Field is only valid if<br>                                indicationType is PRE\_HANDOFF. [handoffInfo](https://docs.qualcomm.com/doc/80-PK177-134/topic/handoff_info.html) arguments are unused and should not be<br>                                used. |
| handoffInfo | Java | HandoffInfo | Data related to actual handoff events. Field is only<br>                                valid if indicationType is HANDOFF. [preHandoffState](https://docs.qualcomm.com/doc/80-PK177-134/topic/pre_handoff_state.html) arguments<br>                                are unused and should not be used. |
| handoffInfo | Native | lli\_HandoffInfo | Data related to actual handoff events. Field is only<br>                                valid if indicationType is HANDOFF. [preHandoffState](https://docs.qualcomm.com/doc/80-PK177-134/topic/pre_handoff_state.html) arguments<br>                                are unused and should not be used. |
|  |  |  |  |

**Parent Topic:** [LLI subsystem callback interfaces](https://docs.qualcomm.com/doc/80-PK177-134/topic/lli_subsystem_callback_interfaces.html)

Last Published: Nov 14, 2024

[Previous Topic
LLI subsystem callback interfaces](https://docs.qualcomm.com/bundle/publicresource/80-PK177-134/topics/lli_subsystem_callback_interfaces.md) [Next Topic
LLI enums](https://docs.qualcomm.com/bundle/publicresource/80-PK177-134/topics/lli_enums.md)