Package com.nhncorp.mods.socket.io.impl.handlers

Examples of com.nhncorp.mods.socket.io.impl.handlers.HttpRequestHandler


    this.rooms = vertx.sharedData().getMap("rooms");
    this.roomClients = vertx.sharedData().getMap("roomClients");
    this.sockets = this.of(DEFAULT_NSP);

    this.handshakeHandler = new HandshakeHandler(this);
    this.httpRequestHandler = new HttpRequestHandler(this);
    this.staticHandler = new StaticHandler(this);

    this.log.info("socket.io started");
  }
View Full Code Here

TOP

Related Classes of com.nhncorp.mods.socket.io.impl.handlers.HttpRequestHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.