diff options
Diffstat (limited to 'src/constants.go')
| -rw-r--r-- | src/constants.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/constants.go b/src/constants.go index 10df1e7e..0f6a32c9 100644 --- a/src/constants.go +++ b/src/constants.go @@ -16,7 +16,10 @@ const ( coordinatorDelayStep time.Duration = 10 * time.Millisecond // Reader - readerBufferSize = 64 * 1024 + readerBufferSize = 64 * 1024 + readerPollIntervalMin = 10 * time.Millisecond + readerPollIntervalStep = 5 * time.Millisecond + readerPollIntervalMax = 50 * time.Millisecond // Terminal initialDelay = 20 * time.Millisecond @@ -68,7 +71,7 @@ const ( EvtSearchProgress EvtSearchFin EvtHeader - EvtClose + EvtReady ) const ( |
