GSettings: properly support 'extends'
[glib.git] / gio / gasyncinitable.h
blobaf5cfb1bef5ffa683ef93c4eb7aa022b0363bc07
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2009 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
23 #ifndef __G_ASYNC_INITABLE_H__
24 #define __G_ASYNC_INITABLE_H__
26 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27 #error "Only <gio/gio.h> can be included directly."
28 #endif
30 #include <gio/giotypes.h>
31 #include <gio/ginitable.h>
33 G_BEGIN_DECLS
35 #define G_TYPE_ASYNC_INITABLE (g_async_initable_get_type ())
36 #define G_ASYNC_INITABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_ASYNC_INITABLE, GAsyncInitable))
37 #define G_IS_ASYNC_INITABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_ASYNC_INITABLE))
38 #define G_ASYNC_INITABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_ASYNC_INITABLE, GAsyncInitableIface))
39 #define G_TYPE_IS_ASYNC_INITABLE(type) (g_type_is_a ((type), G_TYPE_ASYNC_INITABLE))
41 /**
42 * GAsyncInitable:
44 * Interface for asynchronously initializable objects.
46 * Since: 2.22
47 **/
48 typedef struct _GAsyncInitableIface GAsyncInitableIface;
50 /**
51 * GAsyncInitableIface:
52 * @g_iface: The parent interface.
53 * @init_async: Starts initialization of the object.
54 * @init_finish: Finishes initialization of the object.
56 * Provides an interface for asynchronous initializing object such that
57 * initialization may fail.
59 * Since: 2.22
60 **/
61 struct _GAsyncInitableIface
63 GTypeInterface g_iface;
65 /* Virtual Table */
67 void (* init_async) (GAsyncInitable *initable,
68 int io_priority,
69 GCancellable *cancellable,
70 GAsyncReadyCallback callback,
71 gpointer user_data);
72 gboolean (* init_finish) (GAsyncInitable *initable,
73 GAsyncResult *res,
74 GError **error);
77 GLIB_AVAILABLE_IN_ALL
78 GType g_async_initable_get_type (void) G_GNUC_CONST;
81 GLIB_AVAILABLE_IN_ALL
82 void g_async_initable_init_async (GAsyncInitable *initable,
83 int io_priority,
84 GCancellable *cancellable,
85 GAsyncReadyCallback callback,
86 gpointer user_data);
87 GLIB_AVAILABLE_IN_ALL
88 gboolean g_async_initable_init_finish (GAsyncInitable *initable,
89 GAsyncResult *res,
90 GError **error);
92 GLIB_AVAILABLE_IN_ALL
93 void g_async_initable_new_async (GType object_type,
94 int io_priority,
95 GCancellable *cancellable,
96 GAsyncReadyCallback callback,
97 gpointer user_data,
98 const gchar *first_property_name,
99 ...);
100 GLIB_AVAILABLE_IN_ALL
101 void g_async_initable_newv_async (GType object_type,
102 guint n_parameters,
103 GParameter *parameters,
104 int io_priority,
105 GCancellable *cancellable,
106 GAsyncReadyCallback callback,
107 gpointer user_data);
108 GLIB_AVAILABLE_IN_ALL
109 void g_async_initable_new_valist_async (GType object_type,
110 const gchar *first_property_name,
111 va_list var_args,
112 int io_priority,
113 GCancellable *cancellable,
114 GAsyncReadyCallback callback,
115 gpointer user_data);
116 GLIB_AVAILABLE_IN_ALL
117 GObject *g_async_initable_new_finish (GAsyncInitable *initable,
118 GAsyncResult *res,
119 GError **error);
123 G_END_DECLS
126 #endif /* __G_ASYNC_INITABLE_H__ */