Package ch.bailu.gtk.gio
Interface Gio.OnBusNameVanishedCallback
- Enclosing class:
- Gio
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onBusNameVanishedCallback
(CallbackHandler __self, DBusConnection connection, Str name, Pointer user_data) Invoked when the name being watched is known not to have to have an owner.
-
Method Details
-
onBusNameVanishedCallback
void onBusNameVanishedCallback(CallbackHandler __self, @Nonnull DBusConnection connection, @Nonnull Str name, @Nullable Pointer user_data) Invoked when the name being watched is known not to have to have an owner.
This is also invoked when the #GDBusConnection on which the watch was
established has been closed. In that case, @connection will be
%NULL.- Parameters:
connection
- The #GDBusConnection the name is being watched on, or %NULL.name
- The name being watched.user_data
- User data passed to g_bus_watch_name().
-