Subscription represents a stream of events for a single user.
| 66 | |
| 67 | // Subscription represents a stream of events for a single user. |
| 68 | type Subscription interface { |
| 69 | // Event stream for all user's event. |
| 70 | C() <-chan Event |
| 71 | |
| 72 | // Closes the event stream channel and disconnects from the event service. |
| 73 | Close() error |
| 74 | } |
no outgoing calls
no test coverage detected