binctr/vendor/github.com/godbus/dbus
Jess Frazelle 639756e8c6 update vendor
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-19 21:36:34 -04:00
..
_examples update vendor 2018-03-19 21:36:34 -04:00
introspect update vendor 2018-03-19 21:36:34 -04:00
prop update vendor 2018-03-19 21:36:34 -04:00
.travis.yml update vendor 2018-03-19 21:36:34 -04:00
auth.go updates 2016-04-15 21:53:49 -07:00
auth_external.go updates 2016-04-15 21:53:49 -07:00
auth_sha1.go updates 2016-04-15 21:53:49 -07:00
call.go updates 2016-04-15 21:53:49 -07:00
conn.go update vendor 2018-03-19 21:36:34 -04:00
conn_darwin.go update vendor 2018-03-19 21:36:34 -04:00
conn_other.go update vendor 2018-03-19 21:36:34 -04:00
conn_test.go update vendor 2018-03-19 21:36:34 -04:00
CONTRIBUTING.md update vendor 2018-03-19 21:36:34 -04:00
dbus.go update vendor 2018-03-19 21:36:34 -04:00
decoder.go updates 2016-04-15 21:53:49 -07:00
default_handler.go update vendor 2018-03-19 21:36:34 -04:00
doc.go update vendor 2018-03-19 21:36:34 -04:00
encoder.go update vendor 2018-03-19 21:36:34 -04:00
encoder_test.go update vendor 2018-03-19 21:36:34 -04:00
examples_test.go update vendor 2018-03-19 21:36:34 -04:00
export.go update vendor 2018-03-19 21:36:34 -04:00
export_test.go update vendor 2018-03-19 21:36:34 -04:00
homedir.go updates 2016-04-15 21:53:49 -07:00
homedir_dynamic.go updates 2016-04-15 21:53:49 -07:00
homedir_static.go updates 2016-04-15 21:53:49 -07:00
LICENSE updates 2016-04-15 21:53:49 -07:00
MAINTAINERS update vendor 2018-03-19 21:36:34 -04:00
message.go updates 2016-04-15 21:53:49 -07:00
object.go update vendor 2018-03-19 21:36:34 -04:00
proto_test.go update vendor 2018-03-19 21:36:34 -04:00
README.markdown update vendor 2018-03-19 21:36:34 -04:00
server_interfaces.go update vendor 2018-03-19 21:36:34 -04:00
server_interfaces_test.go update vendor 2018-03-19 21:36:34 -04:00
sig.go update vendor 2018-03-19 21:36:34 -04:00
sig_test.go update vendor 2018-03-19 21:36:34 -04:00
store_test.go update vendor 2018-03-19 21:36:34 -04:00
transport_darwin.go updates 2016-04-15 21:53:49 -07:00
transport_generic.go update vendor 2018-03-19 21:36:34 -04:00
transport_tcp.go updates 2016-04-15 21:53:49 -07:00
transport_tcp_test.go update vendor 2018-03-19 21:36:34 -04:00
transport_unix.go update vendor 2018-03-19 21:36:34 -04:00
transport_unix_test.go update vendor 2018-03-19 21:36:34 -04:00
transport_unixcred_dragonfly.go updates 2016-04-15 21:53:49 -07:00
transport_unixcred_freebsd.go update vendor 2018-03-19 21:36:34 -04:00
transport_unixcred_linux.go updates 2016-04-15 21:53:49 -07:00
transport_unixcred_openbsd.go update vendor 2018-03-19 21:36:34 -04:00
variant.go update vendor 2018-03-19 21:36:34 -04:00
variant_lexer.go updates 2016-04-15 21:53:49 -07:00
variant_parser.go updates 2016-04-15 21:53:49 -07:00
variant_test.go update vendor 2018-03-19 21:36:34 -04: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.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.
  • go-bluetooth provides a bluetooth client over bluez dbus API.

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.