kubernetes/vendor/github.com/godbus/dbus/v5
2022-05-04 10:27:41 -04:00
..
auth_anonymous.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
auth_external.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
auth_sha1.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
auth.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
call.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
conn_darwin.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
conn_other.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
conn_unix.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
conn_windows.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
conn.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
CONTRIBUTING.md vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
dbus.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
decoder.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
default_handler.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
doc.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
encoder.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
export.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
homedir_dynamic.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
homedir_static.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
homedir.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
LICENSE vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
MAINTAINERS vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
match.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
message.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
object.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
README.md deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
sequence.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
sequential_handler.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
server_interfaces.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
sig.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
transport_darwin.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
transport_generic.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
transport_nonce_tcp.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
transport_tcp.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
transport_unix.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
transport_unixcred_dragonfly.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
transport_unixcred_freebsd.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
transport_unixcred_linux.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
transport_unixcred_netbsd.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
transport_unixcred_openbsd.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
variant_lexer.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
variant_parser.go vendor: update google/cadvisor and opencontainers/runc 2020-06-24 18:39:50 +02:00
variant.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07: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.