(data)
| 128 | |
| 129 | @socketio.on('my custom broadcast event') |
| 130 | def on_custom_event_broadcast(data): |
| 131 | emit('my custom response', data, broadcast=True) |
| 132 | |
| 133 | |
| 134 | @socketio.on('my custom broadcast namespace event', namespace='/test') |
nothing calls this directly
no test coverage detected
searching dependent graphs…