Package com.google.code.hs4j.command.text

Examples of com.google.code.hs4j.command.text.TextCommandFactory


    }
    this.poolSize = poolSize;
  }

  public HSClient build() throws IOException {
    return new HSClientImpl(new TextCommandFactory(), this.serverAddr,
        this.listeners, this.socketOptions, this.poolSize);
  }
View Full Code Here


   *            HandlerSocket address
   * @throws IOException
   */
  public HSClientImpl(InetSocketAddress inetSocketAddress, int poolSize)
      throws IOException {
    this(new TextCommandFactory(), inetSocketAddress, null, null, poolSize);
  }
View Full Code Here

TOP

Related Classes of com.google.code.hs4j.command.text.TextCommandFactory

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.