Timeout.addFull

Warning gtk_timeout_add_full has been deprecated since version 2.4 and should not be used in newly-written code. Use g_timeout_add_full() instead. Registers a function to be called periodically. The function will be called repeatedly after interval milliseconds until it returns FALSE at which point the timeout is destroyed and will not be called again.

class Timeout
static
uint
addFull

Parameters

interval uint

The time between calls to the function, in milliseconds (1/1000ths of a second.)

marshal GtkCallbackMarshal

The marshaller to use instead of the function (if non-NULL).

data void*

The data to pass to the function.

destroy GDestroyNotify

Function to call when the timeout is destroyed or NULL.

Return Value

Type: uint

A unique id for the event source.

Meta