-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample_fromarray_test.go
More file actions
55 lines (45 loc) · 1.46 KB
/
example_fromarray_test.go
File metadata and controls
55 lines (45 loc) · 1.46 KB
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 pipelines_test
import (
"context"
"log"
"strings"
"sync"
"time"
"github.com/elastiflow/pipelines"
"github.com/elastiflow/pipelines/datastreams"
"github.com/elastiflow/pipelines/datastreams/sinks"
"github.com/elastiflow/pipelines/datastreams/sources"
)
func ExampleFromArray() {
log.Println("Starting FromSlice example pipeline...")
// 1. Set up a context for graceful shutdown.
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
// 2. Define the input data slice.
inputData := []string{"apple", "banana", "cherry"}
sourcer := sources.FromArray(inputData)
// 3. Create a sink that will collect results. We'll use a simple channel.
out := make(chan string, len(inputData))
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
for msg := range out {
log.Printf("Sink received: %s", msg)
}
}()
// 4. Build and run the pipeline.
err := pipelines.New[string, string](ctx, sourcer, nil). // No error channel needed for this simple case.
Start(func(p datastreams.DataStream[string]) datastreams.DataStream[string] {
// The processing stage converts each string to uppercase.
return datastreams.Map(p, func(s string) (string, error) {
return strings.ToUpper(s), nil
})
}).
Sink(sinks.ToChannel(out))
if err != nil {
log.Fatalf("Pipeline failed with error: %v", err)
}
wg.Wait() // Wait for the sink to finish processing.
log.Println("FromSlice example finished successfully.")
}