Merge pull request #2 from huljas/generic_params

Changed session params to be generic type
This commit is contained in:
Heikki Uljas
2016-11-18 09:19:36 +02:00
committed by GitHub
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]string
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 string) {
s.params[key] = value
}
// Get session param
func (s *Session) GetParam(key string) string {
return s.params[key]
}