FromContext/NewContext methods

This commit is contained in:
Asim
2016-01-28 18:23:24 +00:00
parent d306559d8f
commit 1cc621e2d6
3 changed files with 45 additions and 0 deletions

16
client/context.go Normal file
View File

@@ -0,0 +1,16 @@
package client
import (
"golang.org/x/net/context"
)
type clientKey struct{}
func FromContext(ctx context.Context) (Client, bool) {
c, ok := ctx.Value(clientKey{}).(Client)
return c, ok
}
func NewContext(ctx context.Context, c Client) context.Context {
return context.WithValue(ctx, clientKey{}, c)
}