mirror of https://github.com/v2ray/v2ray-core
return error in SetBuffered
parent
762afc1d8f
commit
06a73adb1e
|
@ -84,9 +84,10 @@ func (v *BufferedWriter) IsBuffered() bool {
|
|||
}
|
||||
|
||||
// SetBuffered controls whether the BufferedWriter holds a buffer for writing. If not buffered, any write() calls into underlying writer directly.
|
||||
func (v *BufferedWriter) SetBuffered(cached bool) {
|
||||
func (v *BufferedWriter) SetBuffered(cached bool) error {
|
||||
v.buffered = cached
|
||||
if !cached && !v.buffer.IsEmpty() {
|
||||
v.Flush()
|
||||
return v.Flush()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue