/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

  1. package bbejeck.nio.channels.guice;
  2. import com.google.common.base.Stopwatch;
  3. import com.google.inject.Guice;
  4. import com.google.inject.Injector;
  5. /**
  6. * Created by IntelliJ IDEA.
  7. * User: bbejeck
  8. * Date: 3/9/12
  9. * Time: 10:01 PM
  10. */
  11. public class GuiceAsyncDriver {
  12. public static void main(String[] args) throws Exception {
  13. Injector injector = Guice.createInjector(new AsynchronousServerModule());
  14. AsyncSocketServerGuiceExample socketServer = injector.getInstance(AsyncSocketServerGuiceExample.class);
  15. System.out.println("Starting the EchoSever");
  16. Stopwatch stopwatch = new Stopwatch().start();
  17. socketServer.runServer();
  18. stopwatch.stop();
  19. System.out.println("EchoServer is done in "+stopwatch.elapsedMillis());
  20. }
  21. }