pipedemo: todo
This commit is contained in:
26
_cmptest/_pipedemo/pipe.go
Normal file
26
_cmptest/_pipedemo/pipe.go
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
data := []byte("This is some data that needs to be stored in Body.")
|
||||||
|
pr, pw := io.Pipe()
|
||||||
|
go func() {
|
||||||
|
defer pw.Close()
|
||||||
|
if _, err := pw.Write(data); err != nil {
|
||||||
|
fmt.Println("Error writing to pipe:", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
defer pr.Close()
|
||||||
|
|
||||||
|
readData, err := io.ReadAll(pr)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error reading from Body:", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Println("Body:", string(readData))
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user