代码拉取完成,页面将自动刷新
package gorpc
import (
"time"
"github.com/lubanproj/gorpc/interceptor"
)
// ServerOptions defines the server serve parameters
type ServerOptions struct {
address string // listening address, e.g. :( ip://127.0.0.1:8080、 dns://www.google.com)
network string // network type, e.g. : tcp、udp
protocol string // protocol type, e.g. : proto、json
timeout time.Duration // timeout
serializationType string // serialization type, default: proto
selectorSvrAddr string // service discovery server address, required when using the third-party service discovery plugin
tracingSvrAddr string // tracing plugin server address, required when using the third-party tracing plugin
tracingSpanName string // tracing span name, required when using the third-party tracing plugin
pluginNames []string // plugin name
interceptors []interceptor.ServerInterceptor
}
type ServerOption func(*ServerOptions)
func WithAddress(address string) ServerOption{
return func(o *ServerOptions) {
o.address = address
}
}
func WithNetwork(network string) ServerOption {
return func(o *ServerOptions) {
o.network = network
}
}
func WithProtocol(protocol string) ServerOption {
return func(o *ServerOptions) {
o.protocol = protocol
}
}
func WithTimeout(timeout time.Duration) ServerOption {
return func(o *ServerOptions) {
o.timeout = timeout
}
}
func WithSerializationType(serializationType string) ServerOption {
return func(o *ServerOptions) {
o.serializationType = serializationType
}
}
func WithSelectorSvrAddr(addr string) ServerOption {
return func(o *ServerOptions) {
o.selectorSvrAddr = addr
}
}
func WithPlugin(pluginName ... string) ServerOption {
return func(o *ServerOptions) {
o.pluginNames = append(o.pluginNames, pluginName ...)
}
}
func WithInterceptor(interceptors ...interceptor.ServerInterceptor) ServerOption {
return func(o *ServerOptions) {
o.interceptors = append(o.interceptors, interceptors...)
}
}
func WithTracingSvrAddr(addr string) ServerOption {
return func(o *ServerOptions) {
o.tracingSvrAddr = addr
}
}
func WithTracingSpanName(name string) ServerOption {
return func(o *ServerOptions) {
o.tracingSpanName = name
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。