Class

EDataServerModule

since: 3.4

Description [src]

class EDataServer.Module : GObject.TypeModule
  implements GObject.TypePlugin {
  /* No available fields */
}

Contains only private data that should be read and manipulated using the functions below.

Available since: 3.4

Hierarchy

hierarchy this EModule implements_0 GTypePlugin this--implements_0 ancestor_0 GTypeModule ancestor_0--this ancestor_1 GObject ancestor_1--ancestor_0

Ancestors

Implements

Constructors

e_module_new

Creates a new EModule that will load the specific shared library when in use.

since: 3.4

Functions

e_module_load_all_in_directory

Loads all the modules in the specified directory into memory. If you want to unload them (enabling on-demand loading) you must call g_type_module_unuse() on all the modules. Free the returned list with g_list_free().

since: 3.4

e_module_load_all_in_directory_and_prefixes

Loads all the modules in the specified directory into memory and the other custom prefixes returned by e_util_get_directory_variants(). If you want to unload them (enabling on-demand loading) you must call g_type_module_unuse() on all the modules. Free the returned list with g_list_free().

since: 3.40

e_module_load_file

Load the module from the specified filename into memory. If you want to unload it (enabling on-demand loading) you must call g_type_module_unuse() on the module.

since: 3.16

Instance methods

e_module_get_filename

Returns the filename of the shared library for module. The string is owned by module and should not be modified or freed.

since: 3.4

Methods inherited from GTypeModule (7)
g_type_module_add_interface

Registers an additional interface for a type, whose interface lives in the given type plugin. If the interface was already registered for the type in this plugin, nothing will be done.

g_type_module_register_enum

Looks up or registers an enumeration that is implemented with a particular type plugin. If a type with name type_name was previously registered, the GType identifier for the type is returned, otherwise the type is newly registered, and the resulting GType identifier returned.

g_type_module_register_flags

Looks up or registers a flags type that is implemented with a particular type plugin. If a type with name type_name was previously registered, the GType identifier for the type is returned, otherwise the type is newly registered, and the resulting GType identifier returned.

g_type_module_register_type

Looks up or registers a type that is implemented with a particular type plugin. If a type with name type_name was previously registered, the GType identifier for the type is returned, otherwise the type is newly registered, and the resulting GType identifier returned.

g_type_module_set_name

Sets the name for a GTypeModule.

g_type_module_unuse

Decreases the use count of a GTypeModule by one. If the result is zero, the module will be unloaded. (However, the GTypeModule will not be freed, and types associated with the GTypeModule are not unregistered. Once a GTypeModule is initialized, it must exist forever.).

g_type_module_use

Increases the use count of a GTypeModule by one. If the use count was zero before, the plugin will be loaded. If loading the plugin fails, the use count is reset to its prior value.

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Methods inherited from GTypePlugin (4)
g_type_plugin_complete_interface_info

Calls the complete_interface_info function from the GTypePluginClass of plugin. There should be no need to use this function outside of the GObject type system itself.

g_type_plugin_complete_type_info

Calls the complete_type_info function from the GTypePluginClass of plugin. There should be no need to use this function outside of the GObject type system itself.

g_type_plugin_unuse

Calls the unuse_plugin function from the GTypePluginClass of plugin. There should be no need to use this function outside of the GObject type system itself.

g_type_plugin_use

Calls the use_plugin function from the GTypePluginClass of plugin. There should be no need to use this function outside of the GObject type system itself.

Properties

EDataServer.Module:filename

The filename of the module.

Signals

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct EDataServerModuleClass {
  GTypeModuleClass parent_class;
  
}

No description available.

Class members
parent_class: GTypeModuleClass

No description available.