SessionManagerServer handles streams with the SessionManager RPCs.
| 12 | |
| 13 | // SessionManagerServer handles streams with the SessionManager RPCs. |
| 14 | type SessionManagerServer struct { |
| 15 | sessionManager pogs.SessionManager |
| 16 | responseTimeout time.Duration |
| 17 | } |
| 18 | |
| 19 | func NewSessionManagerServer(sessionManager pogs.SessionManager, responseTimeout time.Duration) *SessionManagerServer { |
| 20 | return &SessionManagerServer{ |
nothing calls this directly
no outgoing calls
no test coverage detected