1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
package suture
import (
"context"
"fmt"
)
type Incrementor struct {
current int
next chan int
stop chan bool
}
func (i *Incrementor) Stop() {
fmt.Println("Stopping the service")
i.stop <- true
}
func (i *Incrementor) Serve(ctx context.Context) error {
for {
select {
case i.next <- i.current:
i.current++
case <-ctx.Done():
// This message on i.stop is just to synchronize
// this test with the example code so the output is
// consistent for the test code; most services
// would just "return nil" here.
fmt.Println("Stopping the service")
i.stop <- true
return nil
}
}
}
func ExampleNew_simple() {
supervisor := NewSimple("Supervisor")
service := &Incrementor{0, make(chan int), make(chan bool)}
supervisor.Add(service)
ctx, cancel := context.WithCancel(context.Background())
supervisor.ServeBackground(ctx)
fmt.Println("Got:", <-service.next)
fmt.Println("Got:", <-service.next)
cancel()
// We sync here just to guarantee the output of "Stopping the service"
<-service.stop
// Output:
// Got: 0
// Got: 1
// Stopping the service
}
|