OnJava8-Examples/network/TestSimpleServerClient.java
2017-01-22 16:48:11 -08:00

19 lines
543 B
Java

// network/TestSimpleServerClient.java
// (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
import java.net.*;
import java.util.concurrent.*;
import onjava.Nap;
public class TestSimpleServerClient {
public static void main(String[] args) {
CompletableFuture.runAsync(
new SimpleServer());
CompletableFuture.runAsync(
new SimpleClient(Local.host()));
new Nap(1);
// Success if no exceptions happen
}
}