28 lines
447 B
Go
28 lines
447 B
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type serverKey struct{}
|
|
|
|
func wait(ctx context.Context) bool {
|
|
if ctx == nil {
|
|
return false
|
|
}
|
|
wait, ok := ctx.Value("wait").(bool)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return wait
|
|
}
|
|
|
|
func FromContext(ctx context.Context) (Server, bool) {
|
|
c, ok := ctx.Value(serverKey{}).(Server)
|
|
return c, ok
|
|
}
|
|
|
|
func NewContext(ctx context.Context, s Server) context.Context {
|
|
return context.WithValue(ctx, serverKey{}, s)
|
|
}
|