subsonic-tui/vendor/github.com/godbus/dbus/v5
Sagi Dayan a3923cf42c initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-03-29 17:56:39 +03:00
..
introspect initial commit 2024-03-29 17:56:39 +03:00
prop initial commit 2024-03-29 17:56:39 +03:00
auth.go initial commit 2024-03-29 17:56:39 +03:00
auth_anonymous.go initial commit 2024-03-29 17:56:39 +03:00
auth_external.go initial commit 2024-03-29 17:56:39 +03:00
auth_sha1.go initial commit 2024-03-29 17:56:39 +03:00
call.go initial commit 2024-03-29 17:56:39 +03:00
conn.go initial commit 2024-03-29 17:56:39 +03:00
conn_darwin.go initial commit 2024-03-29 17:56:39 +03:00
conn_other.go initial commit 2024-03-29 17:56:39 +03:00
conn_unix.go initial commit 2024-03-29 17:56:39 +03:00
conn_windows.go initial commit 2024-03-29 17:56:39 +03:00
CONTRIBUTING.md initial commit 2024-03-29 17:56:39 +03:00
dbus.go initial commit 2024-03-29 17:56:39 +03:00
decoder.go initial commit 2024-03-29 17:56:39 +03:00
default_handler.go initial commit 2024-03-29 17:56:39 +03:00
doc.go initial commit 2024-03-29 17:56:39 +03:00
encoder.go initial commit 2024-03-29 17:56:39 +03:00
escape.go initial commit 2024-03-29 17:56:39 +03:00
export.go initial commit 2024-03-29 17:56:39 +03:00
homedir.go initial commit 2024-03-29 17:56:39 +03:00
LICENSE initial commit 2024-03-29 17:56:39 +03:00
MAINTAINERS initial commit 2024-03-29 17:56:39 +03:00
match.go initial commit 2024-03-29 17:56:39 +03:00
message.go initial commit 2024-03-29 17:56:39 +03:00
object.go initial commit 2024-03-29 17:56:39 +03:00
README.md initial commit 2024-03-29 17:56:39 +03:00
sequence.go initial commit 2024-03-29 17:56:39 +03:00
sequential_handler.go initial commit 2024-03-29 17:56:39 +03:00
server_interfaces.go initial commit 2024-03-29 17:56:39 +03:00
sig.go initial commit 2024-03-29 17:56:39 +03:00
transport_darwin.go initial commit 2024-03-29 17:56:39 +03:00
transport_generic.go initial commit 2024-03-29 17:56:39 +03:00
transport_nonce_tcp.go initial commit 2024-03-29 17:56:39 +03:00
transport_tcp.go initial commit 2024-03-29 17:56:39 +03:00
transport_unix.go initial commit 2024-03-29 17:56:39 +03:00
transport_unixcred_dragonfly.go initial commit 2024-03-29 17:56:39 +03:00
transport_unixcred_freebsd.go initial commit 2024-03-29 17:56:39 +03:00
transport_unixcred_linux.go initial commit 2024-03-29 17:56:39 +03:00
transport_unixcred_netbsd.go initial commit 2024-03-29 17:56:39 +03:00
transport_unixcred_openbsd.go initial commit 2024-03-29 17:56:39 +03:00
transport_zos.go initial commit 2024-03-29 17:56:39 +03:00
variant.go initial commit 2024-03-29 17:56:39 +03:00
variant_lexer.go initial commit 2024-03-29 17:56:39 +03:00
variant_parser.go initial commit 2024-03-29 17:56:39 +03:00

Build Status

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.12 or later. It can be installed by running the command below:

go get github.com/godbus/dbus/v5

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • fyne a cross platform GUI in Go inspired by Material Design.
  • fynedesk a full desktop environment for Linux/Unix using Fyne.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • iwd go bindings for the internet wireless daemon "iwd".
  • notify provides desktop notifications over dbus into a library.
  • playerbm a bookmark utility for media players.

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.