Use generic params

This commit is contained in:
Heikki Uljas
2016-11-18 09:19:02 +02:00
parent fad38bc8b3
commit aae1ca83fc
2 changed files with 2 additions and 12 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ func (m *Melody) HandleRequest(w http.ResponseWriter, r *http.Request) {
session := &Session{
Request: r,
params: make(map[string]string),
Params: make(map[string]interface{}),
conn: conn,
output: make(chan *envelope, m.Config.MessageBufferSize),
melody: m,
+1 -11
View File
@@ -10,7 +10,7 @@ import (
// A melody session.
type Session struct {
Request *http.Request
params map[string]interface{}
Params map[string]interface{}
conn *websocket.Conn
output chan *envelope
melody *Melody
@@ -118,13 +118,3 @@ func (s *Session) WriteBinary(msg []byte) {
func (s *Session) Close() {
s.writeMessage(&envelope{t: websocket.CloseMessage, msg: []byte{}})
}
// Set session param
func (s *Session) SetParam(key string, value interface{}) {
s.params[key] = value
}
// Get session param
func (s *Session) GetParam(key string) (bool, interface{}) {
return s.params[key]
}