ServerService - service object to listen to remote subscriptions
| 121 | |
| 122 | // ServerService - service object to listen to remote subscriptions |
| 123 | type ServerService struct { |
| 124 | server *Server |
| 125 | wg *sync.WaitGroup |
| 126 | started bool |
| 127 | } |
| 128 | |
| 129 | // Register - Registers a remote handler to this event bus |
| 130 | // for a remote subscribe - a given client address only needs to subscribe once |
nothing calls this directly
no outgoing calls
no test coverage detected