Package it.hakvoort.nia2tcp.example

Source Code of it.hakvoort.nia2tcp.example.NiaNetworkServerExample

package it.hakvoort.nia2tcp.example;

import it.hakvoort.nia.NiaDevice;
import it.hakvoort.nia2tcp.NiaNetworkServer;

public class NiaNetworkServerExample {
 
  public NiaNetworkServerExample() {
    NiaDevice device = new NiaDevice();
   
    NiaNetworkServer server = new NiaNetworkServer(device, 4321);
   
    server.start();
  }
 
  public static void main(String[] args) {
    new NiaNetworkServerExample();
  }
}
TOP

Related Classes of it.hakvoort.nia2tcp.example.NiaNetworkServerExample

TOP
Copyright © 2018 www.massapi.com. 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.