2019-10-07 23:28:11 +00:00
|
|
|
from app import socketio
|
|
|
|
from flask_socketio import send, emit
|
|
|
|
|
|
|
|
@socketio.on('connect')
|
|
|
|
def handle_connection():
|
|
|
|
print('''
|
|
|
|
|
|
|
|
wow, there was a socketio connection!
|
|
|
|
|
|
|
|
cool
|
|
|
|
''')
|
2019-10-09 07:20:36 +00:00
|
|
|
emit('message', {'data':'connection'}, broadcast=True)
|
2019-10-07 23:28:11 +00:00
|
|
|
|
|
|
|
@socketio.on('message')
|
|
|
|
def handle_message(message):
|
|
|
|
print(message)
|
2019-10-09 07:20:36 +00:00
|
|
|
emit('init namespace', {'namespace':'newroom'})
|
2019-10-08 23:56:28 +00:00
|
|
|
|
|
|
|
@socketio.on('connect', namespace='/newroom')
|
|
|
|
def handle_connection():
|
|
|
|
print('''
|
|
|
|
|
|
|
|
look cool a namespaced socketio connection!
|
|
|
|
|
|
|
|
''')
|