shithub: furgit

ref: 9bd37998c9ea890401b66604806f7d1fe06b9256
dir: /common/iowrap/write_flusher.go/

View raw version
package iowrap

import "io"

// WriteFlusher writes bytes and flushes buffered output state.
type WriteFlusher interface {
	io.Writer
	Flush() error
}