dbus 0.7.10 copy "dbus: ^0.7.10" to clipboard
dbus: ^0.7.10 copied to clipboard

A native Dart implementation of the D-Bus message bus client. This package allows Dart applications to directly access services on the Linux desktop.

example/example.dart

import 'package:dbus/dbus.dart';

void main() async {
  var client = DBusClient.session();
  var object = DBusRemoteObject(client,
      name: 'org.freedesktop.Notifications',
      path: DBusObjectPath('/org/freedesktop/Notifications'));
  var values = [
    DBusString(''), // App name
    DBusUint32(0), // Replaces
    DBusString(''), // Icon
    DBusString('Hello World!'), // Summary
    DBusString(''), // Body
    DBusArray(DBusSignature('s')), // Actions
    DBusDict(DBusSignature('s'), DBusSignature('v')), // Hints
    DBusInt32(-1), // Expire timeout
  ];
  try {
    var result = await object.callMethod(
        'org.freedesktop.Notifications', 'Notify', values,
        replySignature: DBusSignature('u'));
    var id = result.returnValues[0];
    print('notify ${id.toNative()}');
  } on DBusServiceUnknownException {
    print('Notification service not available');
  }
  await client.close();
}
59
likes
130
pub points
96%
popularity

Publisher

verified publishercanonical.com

A native Dart implementation of the D-Bus message bus client. This package allows Dart applications to directly access services on the Linux desktop.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MPL-2.0 (LICENSE)

Dependencies

args, ffi, meta, xml

More

Packages that depend on dbus