2021-09-25 14:39:16 +02:00
|
|
|
package workgroups_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"runtime"
|
|
|
|
|
|
|
|
"go.xsfx.dev/workgroups"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Example() {
|
|
|
|
d, ctx := workgroups.NewDispatcher(
|
|
|
|
context.Background(),
|
|
|
|
runtime.GOMAXPROCS(0), // This starts as much worker as maximal processes are allowed for go.
|
2021-10-07 13:55:22 +02:00
|
|
|
10, // Capacity of the queue.
|
2021-09-25 14:39:16 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
work := func(ctx context.Context) error {
|
|
|
|
// Check if context already expired.
|
|
|
|
// Return if its the case, else just go forward.
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return fmt.Errorf("got error from context: %w", ctx.Err())
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some wannebe work... printing something.
|
|
|
|
fmt.Print("hello world from work")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Starting up the workers.
|
2021-09-27 10:44:58 +02:00
|
|
|
d.Start()
|
2021-09-25 14:39:16 +02:00
|
|
|
|
|
|
|
// Feeding the workers some work.
|
2021-09-27 10:44:58 +02:00
|
|
|
d.Append(workgroups.NewJob(ctx, work))
|
2021-09-25 14:39:16 +02:00
|
|
|
|
|
|
|
// Closing the channel for work.
|
|
|
|
d.Close()
|
|
|
|
|
|
|
|
// Waiting to finnish everything.
|
|
|
|
if err := d.Wait(); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Output:
|
|
|
|
// hello world from work
|
|
|
|
}
|