(event string, listener pubsub.ListenerWithErr)
| 391 | } |
| 392 | |
| 393 | func (s *racyPubsub) SubscribeWithErr(event string, listener pubsub.ListenerWithErr) (cancel func(), err error) { |
| 394 | return s.Pubsub.SubscribeWithErr(event, listener) |
| 395 | } |
| 396 | |
| 397 | func (s *racyPubsub) Publish(event string, message []byte) error { |
| 398 | err := s.Pubsub.Publish(event, []byte("nonsense")) |
nothing calls this directly
no test coverage detected