class GLib::SourceFuncs

Overview

The GSourceFuncs struct contains a table of functions used to handle event sources in a generic manner.

For idle sources, the prepare and check functions always return true to indicate that the source is always ready to be processed. The prepare function also returns a timeout value of 0 to ensure that the poll() call doesn't block (since that would be time wasted which could have been spent running the idle function).

For timeout sources, the prepare and check functions both return true if the timeout interval has expired. The prepare function also returns a timeout value to ensure that the poll() call doesn't block too long and miss the next timeout.

For file descriptor sources, the prepare function typically returns false, since it must wait until poll() has been called before it knows whether any events need to be processed. It sets the returned timeout to -1 to indicate that it doesn't mind how long the poll() call blocks. In the check function, it tests the results of the poll() call to see if the required condition has been met, and returns true if so.

Defined in:

lib/gi-crystal/src/auto/g_lib-2.0/source_funcs.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pointer : Pointer(Void), transfer : GICrystal::Transfer) #

[View source]
def self.new(data : LibGLib::SourceFuncs, transfer : GICrystal::Transfer) #

[View source]
def self.new(prepare : GLib::Prepare | Nil = nil, check : GLib::Check | Nil = nil, finalize : GLib::Finalize | Nil = nil, closure_callback : GLib::SourceFunc | Nil = nil, closure_marshal : GLib::SourceDummyMarshal | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) : Bool #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


[View source]
def _finalize : GLib::Finalize #

[View source]
def _finalize=(value : GLib::Finalize) #

[View source]
def check : GLib::Check #

[View source]
def check=(value : GLib::Check) #

[View source]
def closure_callback : GLib::SourceFunc #

[View source]
def closure_callback=(value : GLib::SourceFunc) #

[View source]
def closure_marshal : GLib::SourceDummyMarshal #

[View source]
def closure_marshal=(value : GLib::SourceDummyMarshal) #

[View source]
def dispatch : Pointer(Void) | Nil #

[View source]
def dispatch! #

[View source]
def prepare : GLib::Prepare #

[View source]
def prepare=(value : GLib::Prepare) #

[View source]
def to_unsafe #

[View source]