8460: Refactor session logic (subscription protocol) out of handler (queueing and...
[arvados.git] / services / ws / session.go
1 package main
2
3 type session interface {
4         Receive(map[string]interface{})
5         EventMessage(*event) ([]byte, error)
6         Filter(*event) bool
7         debugLogf(string, ...interface{})
8 }