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

Examples of com.nhncorp.mods.socket.io.impl.stores.RedisStore


  public Settings(JsonObject options) {
    this.origins = options.getString("origins", this.origins);
    this.log = options.getBoolean("log", this.log);
    String store = options.getString("store");
    if(store != null) {
      if(store.equals("redis")) this.store = new RedisStore();
    }
    this.Static = options.getString("Static", this.Static);
    this.heartbeats = options.getBoolean("heartbeats", this.heartbeats);
    this.namespace = options.getString("namespace", this.namespace);
    this.transports = options.getString("transports", this.transports);
View Full Code Here

TOP

Related Classes of com.nhncorp.mods.socket.io.impl.stores.RedisStore

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.