Мне трудно понять определения функций в стиле Javascript.
У меня есть сервер Websocket:
var WebSocketServer = require('ws').Server,
wss = new WebSocketServer();
wss.on('connection', function (ws) {
ws.on('message', function (message) {
console.log('received: %s from client', message);
})
ws.send('hello client');
})
И я хочу отправить сообщение подключенным клиентам, когда другая функцияimportantEvent()
называется.
function importantEvent(message) {
//send message to the connected client
ws.send('hello client');
}
Как правильно называть ws.send()
внутри importantEvent()
?