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 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
27 #ifndef __G_ASYNC_INITABLE_H__
28 #define __G_ASYNC_INITABLE_H__
30 #include <gio/giotypes.h>
31 #include <gio/ginitable.h>
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))
44 * Interface for asynchronously initializable objects.
48 typedef struct _GAsyncInitableIface GAsyncInitableIface;
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.
61 struct _GAsyncInitableIface
63 GTypeInterface g_iface;
67 void (* init_async) (GAsyncInitable *initable,
69 GCancellable *cancellable,
70 GAsyncReadyCallback callback,
72 gboolean (* init_finish) (GAsyncInitable *initable,
77 GType g_async_initable_get_type (void) G_GNUC_CONST;
80 void g_async_initable_init_async (GAsyncInitable *initable,
82 GCancellable *cancellable,
83 GAsyncReadyCallback callback,
85 gboolean g_async_initable_init_finish (GAsyncInitable *initable,
89 void g_async_initable_new_async (GType object_type,
91 GCancellable *cancellable,
92 GAsyncReadyCallback callback,
94 const gchar *first_property_name,
96 void g_async_initable_newv_async (GType object_type,
98 GParameter *parameters,
100 GCancellable *cancellable,
101 GAsyncReadyCallback callback,
103 void g_async_initable_new_valist_async (GType object_type,
104 const gchar *first_property_name,
107 GCancellable *cancellable,
108 GAsyncReadyCallback callback,
110 GObject *g_async_initable_new_finish (GAsyncInitable *initable,
119 #endif /* __G_ASYNC_INITABLE_H__ */