This commit is contained in:
2022-12-22 15:49:10 +01:00
parent ac05eff1e8
commit bbb33e9fd6
3 changed files with 300 additions and 17 deletions

View File

@@ -8,10 +8,10 @@ import (
type brcMode int
const (
modeSourceReading = 0
modeSourceFinished = 1
modeBufferReading = 2
modeBufferFinished = 3
modeSourceReading brcMode = 0
modeSourceFinished brcMode = 1
modeBufferReading brcMode = 2
modeBufferFinished brcMode = 3
)
type BufferedReadCloser interface {