8460: Obey event_type filters if given in all subscription requests.
[arvados.git] / services / ws / session.go
1 package main
2
3 type session interface {
4         Receive(map[string]interface{}, []byte)
5         EventMessage(*event) ([]byte, error)
6         Filter(*event) bool
7         debugLogf(string, ...interface{})
8 }