io

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 22, 2025 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FlushingWriter

type FlushingWriter struct {
	// contains filtered or unexported fields
}

FlushingWriter wraps an io.Writer and automatically flushes after each write. This ensures real-time output for streaming operations like hook execution.

func NewFlushingWriter

func NewFlushingWriter(w io.Writer) *FlushingWriter

NewFlushingWriter creates a new FlushingWriter. If the writer already supports flushing, it uses that directly. Otherwise, it wraps it in a bufio.Writer.

func (*FlushingWriter) Flush

func (fw *FlushingWriter) Flush() error

Flush explicitly flushes any buffered data.

func (*FlushingWriter) Write

func (fw *FlushingWriter) Write(p []byte) (n int, err error)

Write writes data and immediately flushes to ensure real-time output.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL