-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption.go
125 lines (105 loc) · 3.23 KB
/
option.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// Copyright 2023 FishGoddess. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package vex
import "time"
type Option func(conf *Config)
func (o Option) ApplyTo(conf *Config) {
o(conf)
}
// WithName sets name to config.
func WithName(name string) Option {
return func(conf *Config) {
conf.name = name
}
}
// WithReadTimeout sets read timeout to config.
func WithReadTimeout(timeout time.Duration) Option {
return func(conf *Config) {
conf.readTimeout = timeout
}
}
// WithWriteTimeout sets write timeout to config.
func WithWriteTimeout(timeout time.Duration) Option {
return func(conf *Config) {
conf.writeTimeout = timeout
}
}
// WithConnectTimeout sets connect timeout to config.
func WithConnectTimeout(timeout time.Duration) Option {
return func(conf *Config) {
conf.connectTimeout = timeout
}
}
// WithCloseTimeout sets close timeout to config.
func WithCloseTimeout(timeout time.Duration) Option {
return func(conf *Config) {
conf.closeTimeout = timeout
}
}
// WithReadBufferSize sets read buffer size to config.
func WithReadBufferSize(bufferSize uint32) Option {
return func(conf *Config) {
conf.readBufferSize = int(bufferSize)
}
}
// WithWriteBufferSize sets write buffer size to config.
func WithWriteBufferSize(bufferSize uint32) Option {
return func(conf *Config) {
conf.writeBufferSize = int(bufferSize)
}
}
// WithMaxConnections sets max connections to config.
func WithMaxConnections(maxConnections uint32) Option {
return func(conf *Config) {
conf.maxConnections = int(maxConnections)
}
}
// WithOnConnected sets on connected function to config.
func WithOnConnected(onConnected func(clientAddress string, serverAddress string)) Option {
return func(conf *Config) {
conf.onConnectedFunc = onConnected
}
}
// WithOnDisconnected sets on disconnected function to config.
func WithOnDisconnected(onDisconnected func(clientAddress string, serverAddress string)) Option {
return func(conf *Config) {
conf.onDisconnectedFunc = onDisconnected
}
}
// WithBeforeServing sets before serving function to config.
func WithBeforeServing(beforeServing func(address string)) Option {
return func(conf *Config) {
conf.beforeServingFunc = beforeServing
}
}
// WithAfterServing sets after serving function to config.
func WithAfterServing(afterServing func(address string)) Option {
return func(conf *Config) {
conf.afterServingFunc = afterServing
}
}
// WithBeforeHandling sets before handling function to config.
func WithBeforeHandling(beforeHandling func(ctx *Context)) Option {
return func(conf *Config) {
conf.beforeHandlingFunc = beforeHandling
}
}
// WithAfterHandling sets after handling function to config.
func WithAfterHandling(afterHandling func(ctx *Context)) Option {
return func(conf *Config) {
conf.afterHandlingFunc = afterHandling
}
}
// WithBeforeClosing sets before closing function to config.
func WithBeforeClosing(beforeClosing func(address string)) Option {
return func(conf *Config) {
conf.beforeClosingFunc = beforeClosing
}
}
// WithAfterClosing sets after closing function to config.
func WithAfterClosing(afterClosing func(address string)) Option {
return func(conf *Config) {
conf.afterClosingFunc = afterClosing
}
}