complete the list of contributors

This commit is contained in:
Xing Xing 2015-01-20 10:27:12 +08:00
parent 2c9d82830c
commit b612b80f80

View File

@ -37,41 +37,45 @@ Usage
## Worker ## Worker
// Limit number of concurrent jobs execution. Use worker.Unlimited (0) if you want no limitation. ```go
w := worker.New(worker.OneByOne) // Limit number of concurrent jobs execution. Use worker.Unlimited (0) if you want no limitation.
w.ErrHandler = func(e error) { w := worker.New(worker.OneByOne)
log.Println(e) w.ErrHandler = func(e error) {
} log.Println(e)
w.AddServer("127.0.0.1:4730") }
// Use worker.Unlimited (0) if you want no timeout w.AddServer("127.0.0.1:4730")
w.AddFunc("ToUpper", ToUpper, worker.Unlimited) // Use worker.Unlimited (0) if you want no timeout
// This will give a timeout of 5 seconds w.AddFunc("ToUpper", ToUpper, worker.Unlimited)
w.AddFunc("ToUpperTimeOut5", ToUpper, 5) // This will give a timeout of 5 seconds
if err := w.Ready(); err != nil { w.AddFunc("ToUpperTimeOut5", ToUpper, 5)
log.Fatal(err)
return if err := w.Ready(); err != nil {
} log.Fatal(err)
go w.Work() return
}
go w.Work()
```
## Client ## Client
// ... ```go
c, err := client.New("tcp4", "127.0.0.1:4730") // ...
// ... error handling c, err := client.New("tcp4", "127.0.0.1:4730")
defer c.Close() // ... error handling
c.ErrorHandler = func(e error) { defer c.Close()
log.Println(e) c.ErrorHandler = func(e error) {
} log.Println(e)
echo := []byte("Hello\x00 world") }
echomsg, err := c.Echo(echo) echo := []byte("Hello\x00 world")
// ... error handling echomsg, err := c.Echo(echo)
log.Println(string(echomsg)) // ... error handling
jobHandler := func(resp *client.Response) { log.Println(string(echomsg))
log.Printf("%s", resp.Data) jobHandler := func(resp *client.Response) {
} log.Printf("%s", resp.Data)
handle, err := c.Do("ToUpper", echo, client.JobNormal, jobHandler) }
// ... handle, err := c.Do("ToUpper", echo, client.JobNormal, jobHandler)
// ...
```
Branches Branches
======== ========
@ -87,10 +91,15 @@ __Use at your own risk!__
Contributors Contributors
============ ============
Great thanks to all of you for your support and interest!
(_Alphabetic order_) (_Alphabetic order_)
* [Alex Zylman](https://github.com/azylman) * [Alex Zylman](https://github.com/azylman)
* [C.R. Kirkwood-Watts](https://github.com/kirkwood)
* [Damian Gryski](https://github.com/dgryski) * [Damian Gryski](https://github.com/dgryski)
* [Gabriel Cristian Alecu](https://github.com/AzuraMeta)
* [Graham Barr](https://github.com/gbarr)
* [Ingo Oeser](https://github.com/nightlyone) * [Ingo Oeser](https://github.com/nightlyone)
* [jake](https://github.com/jbaikge) * [jake](https://github.com/jbaikge)
* [Joe Higton](https://github.com/draxil) * [Joe Higton](https://github.com/draxil)
@ -98,9 +107,13 @@ Contributors
* [Kevin Darlington](https://github.com/kdar) * [Kevin Darlington](https://github.com/kdar)
* [miraclesu](https://github.com/miraclesu) * [miraclesu](https://github.com/miraclesu)
* [Paul Mach](https://github.com/paulmach) * [Paul Mach](https://github.com/paulmach)
* [Randall McPherson](https://github.com/rlmcpherson)
* [Sam Grimee](https://github.com/sgrimee) * [Sam Grimee](https://github.com/sgrimee)
* suchj
* [Xing Xing](http://mikespook.com) <mikespook@gmail.com> [@Twitter](http://twitter.com/mikespook) Maintainer
==========
* [Xing Xing](http://mikespook.com) &lt;<mikespook@gmail.com>&gt; [@Twitter](http://twitter.com/mikespook)
Open Source - MIT Software License Open Source - MIT Software License
================================== ==================================