|
| 1 | +package queue_test |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + "fmt" |
| 6 | + "log" |
| 7 | + "time" |
| 8 | + |
| 9 | + "github.com/golang-queue/queue" |
| 10 | +) |
| 11 | + |
| 12 | +func ExampleNewPool_queueTask() { |
| 13 | + taskN := 7 |
| 14 | + rets := make(chan int, taskN) |
| 15 | + // allocate a pool with 5 goroutines to deal with those tasks |
| 16 | + p := queue.NewPool(5) |
| 17 | + // don't forget to release the pool in the end |
| 18 | + defer p.Release() |
| 19 | + |
| 20 | + // assign tasks to asynchronous goroutine pool |
| 21 | + for i := 0; i < taskN; i++ { |
| 22 | + idx := i |
| 23 | + if err := p.QueueTask(func(context.Context) error { |
| 24 | + // sleep and return the index |
| 25 | + time.Sleep(20 * time.Millisecond) |
| 26 | + rets <- idx |
| 27 | + return nil |
| 28 | + }); err != nil { |
| 29 | + log.Println(err) |
| 30 | + } |
| 31 | + } |
| 32 | + |
| 33 | + // wait until all tasks done |
| 34 | + for i := 0; i < taskN; i++ { |
| 35 | + fmt.Println("index:", <-rets) |
| 36 | + } |
| 37 | + |
| 38 | + // Unordered output: |
| 39 | + // index: 3 |
| 40 | + // index: 0 |
| 41 | + // index: 2 |
| 42 | + // index: 4 |
| 43 | + // index: 5 |
| 44 | + // index: 6 |
| 45 | + // index: 1 |
| 46 | +} |
| 47 | + |
| 48 | +func ExampleNewPool_queueTaskTimeout() { |
| 49 | + taskN := 7 |
| 50 | + rets := make(chan int, taskN) |
| 51 | + resps := make(chan error, 1) |
| 52 | + // allocate a pool with 5 goroutines to deal with those tasks |
| 53 | + q := queue.NewPool(5) |
| 54 | + // don't forget to release the pool in the end |
| 55 | + defer q.Release() |
| 56 | + |
| 57 | + // assign tasks to asynchronous goroutine pool |
| 58 | + for i := 0; i < taskN; i++ { |
| 59 | + idx := i |
| 60 | + if err := q.QueueTaskWithTimeout(100*time.Millisecond, func(ctx context.Context) error { |
| 61 | + // panic job |
| 62 | + if idx == 5 { |
| 63 | + panic("system error") |
| 64 | + } |
| 65 | + // timeout job |
| 66 | + if idx == 6 { |
| 67 | + time.Sleep(105 * time.Millisecond) |
| 68 | + } |
| 69 | + select { |
| 70 | + case <-ctx.Done(): |
| 71 | + resps <- ctx.Err() |
| 72 | + default: |
| 73 | + } |
| 74 | + |
| 75 | + rets <- idx |
| 76 | + return nil |
| 77 | + }); err != nil { |
| 78 | + log.Println(err) |
| 79 | + } |
| 80 | + } |
| 81 | + |
| 82 | + // wait until all tasks done |
| 83 | + for i := 0; i < taskN-1; i++ { |
| 84 | + fmt.Println("index:", <-rets) |
| 85 | + } |
| 86 | + close(resps) |
| 87 | + for e := range resps { |
| 88 | + fmt.Println(e.Error()) |
| 89 | + } |
| 90 | + |
| 91 | + fmt.Println("success task count:", q.SuccessTasks()) |
| 92 | + fmt.Println("failure task count:", q.FailureTasks()) |
| 93 | + |
| 94 | + // Unordered output: |
| 95 | + // index: 3 |
| 96 | + // index: 0 |
| 97 | + // index: 2 |
| 98 | + // index: 4 |
| 99 | + // index: 6 |
| 100 | + // index: 1 |
| 101 | + // context deadline exceeded |
| 102 | + // success task count: 5 |
| 103 | + // failure task count: 2 |
| 104 | +} |
0 commit comments