本文整理匯總了Golang中github.com/gorilla/sessions.GetRegistry函數的典型用法代碼示例。如果您正苦於以下問題:Golang GetRegistry函數的具體用法?Golang GetRegistry怎麽用?Golang GetRegistry使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了GetRegistry函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Get
func (s *leveldbStore) Get(r *http.Request, name string) (*sessions.Session, error) {
return sessions.GetRegistry(r).Get(s, name)
}
示例2: Get
// Get returns a session for the given name after adding it to the registry.
//
func (s *MemoryStore) Get(r *http.Request, name string) (*sessions.Session, error) {
Log.Info("MemoryStore Get()")
return sessions.GetRegistry(r).Get(s, name)
}
示例3: Get
//Implementation of gorilla/sessions.Store interface
// Get registers and returns a session for the given name and session store.
// It returns a new session if there are no sessions registered for the name.
func (d *dalStore) Get(r *http.Request, name string) (*gSessions.Session, error) {
return gSessions.GetRegistry(r).Get(d, name)
}
示例4: Get
//Implementation of gorilla/sessions.Store interface
// Get registers and returns a session for the given name and session store.
// It returns a new session if there are no sessions registered for the name.
func (m *mongoStore) Get(r *http.Request, name string) (*gSessions.Session, error) {
return gSessions.GetRegistry(r).Get(m, name)
}
示例5: Get
// Get Fetches a session for a given name after it has been added to the
// registry.
func (db *PGStore) Get(r *http.Request, name string) (*sessions.Session, error) {
return sessions.GetRegistry(r).Get(db, name)
}
示例6: Get
// Get returns a session for the given name after adding it to the registry.
//
// It returns a new session if the sessions doesn't exist. Access IsNew on
// the session to check if it is an existing session or a new one.
//
// It returns a new session and an error if the session exists but could
// not be decoded.
func (s *SentinelFailoverStore) Get(r *http.Request, name string) (*sessions.Session, error) {
return sessions.GetRegistry(r).Get(s, name)
}
示例7: Get
func (m *SqliteStore) Get(r *http.Request, name string) (*sessions.Session, error) {
return sessions.GetRegistry(r).Get(m, name)
}
示例8: Get
// Get returns a session for the given name after adding it to the registry.
//
// See CookieStore.Get().
func (s *MemcacheDatastoreStore) Get(r *http.Request, name string) (
*sessions.Session, error) {
return sessions.GetRegistry(r).Get(s, name)
}