Esempio n. 1
0
async def join_room(sid, room_name):
    print(
        "________________________ User {} joined room {} with namespace /dashboard _______________________"
        .format(sid, room_name))
    sio.enter_room(sid, room=room_name, namespace='/dashboard')
    sio.enter_room(sid, room=sid, namespace='/dashboard')
Esempio n. 2
0
async def join_room(sid, room_name):
    print(
        "________________________ User {} joined room {} with namespace /project_______________________"
        .format(sid, room_name))
    sio.enter_room(sid, room=room_name, namespace='/project')
    sio.enter_room(sid, room=sid, namespace='/project')
async def join_room(sid, room_name):
    print(
        "________________________ User {} joined room {} with namespace /grievance_______________________"
        .format(sid, room_name))
    sio.enter_room(sid, room=room_name, namespace='/grievance')
    sio.enter_room(sid, room=sid, namespace='/grievance')
Esempio n. 4
0
async def join_room(sid, room_name):
    print(
        "________________________ User {} joined room {} with namespace /modelpublish _______________________"
        .format(sid, room_name))
    sio.enter_room(sid, room=room_name, namespace='/modelpublish')
    sio.enter_room(sid, room=sid, namespace='/modelpublish')
async def join_room(sid, room_name):
    print(
        "________________________ User {} joined room {} with namespace /conversation_______________________"
        .format(sid, room_name))
    sio.enter_room(sid, room=room_name, namespace='/conversation')
    sio.enter_room(sid, room=sid, namespace='/conversation')