Explorar o código

Adds Sockets on randomFree

Nikatlas %!s(int64=6) %!d(string=hai) anos
pai
achega
ce725fd626
Modificáronse 1 ficheiros con 11 adicións e 1 borrados
  1. 11 1
      services/matchmaking/randomFree.js

+ 11 - 1
services/matchmaking/randomFree.js

@@ -1,7 +1,17 @@
+const io  = require('socket.io')();
+const nsp = io.of('/randomFree');
+
 class randomFree {
+
+	constructor() {
+		nsp.on('connection', function(socket){
+		  console.log('someone connected');
+		});
+	}
+
     join(user){
         //join randomFree queue room
     }
 }
 
-module.exports = randomFree;
+module.exports = new randomFree();