aboutsummaryrefslogtreecommitdiff
path: root/common/iowrap/write_flusher.go
blob: aaac8724b538abb71f204afe1e6c9560d4780c83 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package iowrap

import "io"

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