12 lines
271 B
Go
12 lines
271 B
Go
|
|
// Package constants define constant variable
|
||
|
|
package constants
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
const (
|
||
|
|
// SendMaxBatchSize define maximum buffer capacity
|
||
|
|
SendMaxBatchSize = 100
|
||
|
|
// SendMaxBatchInterval define maximum aggregate latency
|
||
|
|
SendMaxBatchInterval = 200 * time.Millisecond
|
||
|
|
)
|