1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-17 01:15:59 -04:00
gitea/vendor/github.com/jtolds/gls/gen_sym.go

14 lines
289 B
Go
Raw Normal View History

2016-11-03 18:16:01 -04:00
package gls
var (
symPool = &idPool{}
)
// ContextKey is a throwaway value you can use as a key to a ContextManager
type ContextKey struct{ id uint }
// GenSym will return a brand new, never-before-used ContextKey
func GenSym() ContextKey {
return ContextKey{id: symPool.Acquire()}
}