Cancellable.connect

Convenience function to connect to the "cancelled" signal. Also handles the race condition that may happen if the cancellable is cancelled right before connecting. callback is called at most once, either directly at the time of the connect if cancellable is already cancelled, or when cancellable is cancelled in some thread. data_destroy_func will be called when the handler is disconnected, or immediately if the cancellable is already cancelled. See "cancelled" for details on how to use this. Since 2.22

Parameters

callback GCallback

The GCallback to connect.

data void*

Data to pass to callback.

dataDestroyFunc GDestroyNotify

Free function for data or NULL. [allow-none]

Return Value

Type: gulong

The id of the signal handler or 0 if cancellable has already been cancelled.

Meta