/src/main/java/bbejeck/nio/channels/guice/GuiceAsyncDriver.java
http://github.com/bbejeck/Java-7 · Java · 24 lines · 15 code · 3 blank · 6 comment · 0 complexity · 2edf1644666d0d47bbff1910f55f9389 MD5 · raw file
- package bbejeck.nio.channels.guice;
- import com.google.common.base.Stopwatch;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- /**
- * Created by IntelliJ IDEA.
- * User: bbejeck
- * Date: 3/9/12
- * Time: 10:01 PM
- */
- public class GuiceAsyncDriver {
-
- public static void main(String[] args) throws Exception {
- Injector injector = Guice.createInjector(new AsynchronousServerModule());
- AsyncSocketServerGuiceExample socketServer = injector.getInstance(AsyncSocketServerGuiceExample.class);
- System.out.println("Starting the EchoSever");
- Stopwatch stopwatch = new Stopwatch().start();
- socketServer.runServer();
- stopwatch.stop();
- System.out.println("EchoServer is done in "+stopwatch.elapsedMillis());
- }
- }