ConnectionRequestHandlesCb
Description:
[ Version ( deprecated = true ) ]
public delegate void ConnectionRequestHandlesCb (Connection connection, HandleType handle_type, uint[] handles, string[] ids, Error error, Object weak_object)
Warning: ConnectionRequestHandlesCb is deprecated.
Signature of the callback called when request_handles succeeds or fails.
See request_handles.
On success, the caller has a reference to each handle in handles
.
Since telepathy-glib version 0.13.8, the handles will remain valid until connection
becomes invalid (signalled by
invalidated). In earlier versions, they could be released with
unref_handles.
For convenience, the handle type and IDs requested by the caller are passed through to this callback, so the caller does not have to include
them in user_data
.
Parameters:
connection |
the connection |
handle_type |
the handle type that was passed to request_handles |
handles |
the |
ids |
a copy of the array of |
error |
|
weak_object |
the same object that was passed to request_handles |
n_handles |
the number of IDs that were passed to request_handles on success, or 0 on failure |
user_data |
the same arbitrary pointer that was passed to request_handles |