Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
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
package pipe
 
import (
    "github.com/v2fly/v2ray-core/v5/common/buf"
)
 
// Writer is a buf.Writer that writes data into a pipe.
type Writer struct {
    pipe *pipe
}
 
// WriteMultiBuffer implements buf.Writer.
func (w *Writer) WriteMultiBuffer(mb buf.MultiBuffer) error {
    return w.pipe.WriteMultiBuffer(mb)
}
 
// Close implements io.Closer. After the pipe is closed, writing to the pipe will return io.ErrClosedPipe, while reading will return io.EOF.
func (w *Writer) Close() error {
    return w.pipe.Close()
}
 
// Interrupt implements common.Interruptible.
func (w *Writer) Interrupt() {
    w.pipe.Interrupt()
}