Package net.wimpi.modbusme.util

Examples of net.wimpi.modbusme.util.ThreadPool


   *
   * @param poolsize the size of the <tt>ThreadPool</tt> used to handle
   *        incoming requests.
   */
  public ModbusTCPListener(int poolsize) {
    m_ThreadPool = new ThreadPool(poolsize);
    //FPFtry {
      m_Address = ""/*FPFInetAddress.getLocalHost()*/;
    //FPF} catch (UnknownHostException ex) {

    //FPF}
View Full Code Here


   * @param poolsize the size of the <tt>ThreadPool</tt> used to handle
   *        incoming requests.
   * @param addr the interface to use for listening.
   */
  public ModbusTCPListener(int poolsize, String addr) {
    m_ThreadPool = new ThreadPool(poolsize);
    m_Address = addr;
  }//constructor
View Full Code Here

TOP

Related Classes of net.wimpi.modbusme.util.ThreadPool

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.