~nskaggs/+junk/xenial-test

« back to all changes in this revision

Viewing changes to src/github.com/godbus/dbus/README.markdown

  • Committer: Nicholas Skaggs
  • Date: 2016-10-24 20:56:05 UTC
  • Revision ID: nicholas.skaggs@canonical.com-20161024205605-z8lta0uvuhtxwzwl
Initi with beta15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dbus
 
2
----
 
3
 
 
4
dbus is a simple library that implements native Go client bindings for the
 
5
D-Bus message bus system.
 
6
 
 
7
### Features
 
8
 
 
9
* Complete native implementation of the D-Bus message protocol
 
10
* Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
 
11
* Subpackages that help with the introspection / property interfaces
 
12
 
 
13
### Installation
 
14
 
 
15
This packages requires Go 1.1. If you installed it and set up your GOPATH, just run:
 
16
 
 
17
```
 
18
go get github.com/godbus/dbus
 
19
```
 
20
 
 
21
If you want to use the subpackages, you can install them the same way.
 
22
 
 
23
### Usage
 
24
 
 
25
The complete package documentation and some simple examples are available at
 
26
[godoc.org](http://godoc.org/github.com/godbus/dbus). Also, the
 
27
[_examples](https://github.com/godbus/dbus/tree/master/_examples) directory
 
28
gives a short overview over the basic usage. 
 
29
 
 
30
#### Projects using godbus
 
31
- [notify](https://github.com/esiqveland/notify) provides desktop notifications over dbus into a library.
 
32
 
 
33
Please note that the API is considered unstable for now and may change without
 
34
further notice.
 
35
 
 
36
### License
 
37
 
 
38
go.dbus is available under the Simplified BSD License; see LICENSE for the full
 
39
text.
 
40
 
 
41
Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.