The front end can only emit to the server. The back end can emit to all clients, a subset of clients (using rooms) or to a single client.
To emit to one client from the server using Python:
emit('my event', to=sid)
Where sid
is the identifier for the client you want to target. If instead you prefer to emit an event to a group of clients that were put in a room, you can do it with:
emit('my event', to=room)
Where room
is the name of the room in question.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…