updates #207

Merged
vtolstov merged 293 commits from updates into v3 2023-03-24 00:29:35 +03:00
66 changed files with 3095 additions and 502 deletions
Showing only changes of commit 0459ea0613 - Show all commits

View File

@@ -321,22 +321,19 @@ func Listener(l net.Listener) Option {
}
}
<<<<<<< HEAD
// HandlerOption func
type HandlerOption func(*HandlerOptions)
// HandlerOptions struct
type HandlerOptions struct {
=======
func GracefulTimeout(t time.Duration) options.Option {
return func(src interface{}) error {
return options.Set(src, t, ".GracefulTimeout")
// GracefulTimeout duration
func GracefulTimeout(td time.Duration) options.Option {
return func(o *Options) {
o.GracefulTimeout = td
}
}
// HandleOptions struct
type HandleOptions struct {
>>>>>>> bf0c3016cb09 (add gracefultimeout in server)
// HandlerOptions struct
type HandlerOptions struct {
// Context holds external options
Context context.Context
// Metadata for handler