on_pager_status property

Pointer<NativeFunction<Void Function(pjsua_call_id call_id, Pointer<pj_str_t> to, Pointer<pj_str_t> body, Pointer<Void> user_data, Int32 status, Pointer<pj_str_t> reason)>> on_pager_status
getter/setter pair

Notify application about the delivery status of outgoing pager request. See also on_pager_status2() callback for the version with \a pjsip_rx_data in the argument list.

@param call_id Containts the ID of the call where the IM was sent, or PJSUA_INVALID_ID if the IM was sent outside call context. @param to Destination URI. @param body Message body. @param user_data Arbitrary data that was specified when sending IM message. @param status Delivery status. @param reason Delivery status reason.

Implementation

external ffi.Pointer<
    ffi.NativeFunction<
        ffi.Void Function(
            pjsua_call_id call_id,
            ffi.Pointer<pj_str_t> to,
            ffi.Pointer<pj_str_t> body,
            ffi.Pointer<ffi.Void> user_data,
            ffi.Int32 status,
            ffi.Pointer<pj_str_t> reason)>> on_pager_status;