on_typing property

Pointer<NativeFunction<Void Function(pjsua_call_id call_id, Pointer<pj_str_t> from, Pointer<pj_str_t> to, Pointer<pj_str_t> contact, pj_bool_t is_typing)>> on_typing
getter/setter pair

Notify application about typing indication.

@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 from URI of the sender. @param to URI of the destination message. @param contact The Contact URI of the sender, if present. @param is_typing Non-zero if peer is typing, or zero if peer has stopped typing a message.

Implementation

external ffi.Pointer<
    ffi.NativeFunction<
        ffi.Void Function(
            pjsua_call_id call_id,
            ffi.Pointer<pj_str_t> from,
            ffi.Pointer<pj_str_t> to,
            ffi.Pointer<pj_str_t> contact,
            pj_bool_t is_typing)>> on_typing;