containerd/vendor/github.com/godbus/dbus
Lantao Liu 141f57065c Update vendors out of sync
Signed-off-by: Lantao Liu <lantaol@google.com>
2018-01-05 01:17:45 +00:00
..
auth_external.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
auth_sha1.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
auth.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
call.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
conn_darwin.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
conn_other.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
conn.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
dbus.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
decoder.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
doc.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
encoder.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
export.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
homedir_dynamic.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
homedir_static.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
homedir.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
LICENSE Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
message.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
object.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
README.markdown Update vendors out of sync 2018-01-05 01:17:45 +00:00
sig.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
transport_darwin.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
transport_generic.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
transport_unix.go Update vendors out of sync 2018-01-05 01:17:45 +00:00
transport_unixcred_dragonfly.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
transport_unixcred_linux.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
variant_lexer.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
variant_parser.go Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
variant.go Update vendors out of sync 2018-01-05 01:17:45 +00:00

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.1. If you installed it and set up your GOPATH, just run:

go get github.com/godbus/dbus

If you want to use the subpackages, you can install them the same way.

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

  • notify provides desktop notifications over dbus into a library.

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.