Files
melody/config.go
T
Ola Holmström 9f353b18a2 documentation
2015-05-13 23:15:10 +02:00

23 lines
483 B
Go

package melody
import "time"
// Melody configuration, all times in milliseconds.
type Config struct {
WriteWait time.Duration
PongWait time.Duration
PingPeriod time.Duration
MaxMessageSize int64
MessageBufferSize int
}
func newConfig() *Config {
return &Config{
WriteWait: 10 * time.Second,
PongWait: 60 * time.Second,
PingPeriod: (60 * time.Second * 9) / 10,
MaxMessageSize: 512,
MessageBufferSize: 256,
}
}