telepathy-glib API Reference Manual | ||||
---|---|---|---|---|
Top | Description | Object Hierarchy | Known Implementations | Signals |
Service-side Debug base interfaceService-side Debug base interface — GInterface for Telepathy Debug objects |
#include <telepathy-glib/telepathy-glib-dbus.h> TpSvcDebug; TpSvcDebugClass; void (*tp_svc_debug_get_messages_impl) (TpSvcDebug *self
,DBusGMethodInvocation *context
); void tp_svc_debug_implement_get_messages (TpSvcDebugClass *klass
,tp_svc_debug_get_messages_impl impl
); void tp_svc_debug_return_from_get_messages (DBusGMethodInvocation *context
,const GPtrArray *out_Messages
); void tp_svc_debug_emit_new_debug_message (gpointer instance
,gdouble arg_time
,const gchar *arg_domain
,guint arg_level
,const gchar *arg_message
);
This interface (auto-generated from the Telepathy spec) makes it easier to export objects implementing the Telepathy Debug interface.
TpDebugSender provides a reference implementation of the Debug object.
typedef struct _TpSvcDebug TpSvcDebug;
Dummy typedef representing any implementation of this interface.
typedef struct _TpSvcDebugClass TpSvcDebugClass;
The class of TpSvcDebug.
In a full implementation of this interface (i.e. all
methods implemented), the interface initialization
function used in G_IMPLEMENT_INTERFACE()
would
typically look like this:
static void implement_debug (gpointer klass, gpointer unused G_GNUC_UNUSED) { #define IMPLEMENT(x) tp_svc_debug_implement_##x (\ klass, my_object_##x) IMPLEMENT (get_messages); #undef IMPLEMENT }
void (*tp_svc_debug_get_messages_impl) (TpSvcDebug *self
,DBusGMethodInvocation *context
);
The signature of an implementation of the D-Bus method GetMessages on interface org.freedesktop.Telepathy.Debug.
|
The object implementing this interface |
|
Used to return values or throw an error |
void tp_svc_debug_implement_get_messages (TpSvcDebugClass *klass
,tp_svc_debug_get_messages_impl impl
);
Register an implementation for the GetMessages method in the vtable of an implementation of this interface. To be called from the interface init function.
|
A class whose instances implement this interface |
|
A callback used to implement the GetMessages D-Bus method |
void tp_svc_debug_return_from_get_messages (DBusGMethodInvocation *context
,const GPtrArray *out_Messages
);
Return successfully by calling dbus_g_method_return()
.
This inline function exists only to provide type-safety.
|
The D-Bus method invocation context |
|
const GPtrArray * (FIXME, generate documentation) |
void tp_svc_debug_emit_new_debug_message (gpointer instance
,gdouble arg_time
,const gchar *arg_domain
,guint arg_level
,const gchar *arg_message
);
Type-safe wrapper around g_signal_emit to emit the NewDebugMessage signal on interface org.freedesktop.Telepathy.Debug.
|
The object implementing this interface |
|
gdouble (FIXME, generate documentation) |
|
const gchar * (FIXME, generate documentation) |
|
guint (FIXME, generate documentation) |
|
const gchar * (FIXME, generate documentation) |
"new-debug-message"
signalvoid user_function (TpSvcDebug *self,
gdouble arg_time,
gchar *arg_domain,
guint arg_level,
gchar *arg_message,
gpointer user_data) : Has Details
The NewDebugMessage D-Bus signal is emitted whenever this GObject signal is.
|
an object |
|
gdouble (FIXME, generate documentation) |
|
const gchar * (FIXME, generate documentation) |
|
guint (FIXME, generate documentation) |
|
const gchar * (FIXME, generate documentation) |
|
user data set when the signal handler was connected. |