Class NioServer

  • All Implemented Interfaces:
    com.google.common.util.concurrent.Service

    public class NioServer
    extends com.google.common.util.concurrent.AbstractExecutionThreadService
    Creates a simple server listener which listens for incoming client connections and uses a StreamConnection to process data.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface com.google.common.util.concurrent.Service

        com.google.common.util.concurrent.Service.Listener, com.google.common.util.concurrent.Service.State
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void run()  
      void triggerShutdown()
      Invoked by the Execution service when it's time to stop.
      • Methods inherited from class com.google.common.util.concurrent.AbstractExecutionThreadService

        addListener, awaitRunning, awaitRunning, awaitTerminated, awaitTerminated, executor, failureCause, isRunning, serviceName, shutDown, startAsync, startUp, state, stopAsync, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • NioServer

        public NioServer​(StreamConnectionFactory connectionFactory,
                         java.net.InetSocketAddress bindAddress)
                  throws java.io.IOException
        Creates a new server which is capable of listening for incoming connections and processing client provided data using StreamConnections created by the given StreamConnectionFactory
        Throws:
        java.io.IOException - If there is an issue opening the server socket or binding fails for some reason
    • Method Detail

      • run

        protected void run()
                    throws java.lang.Exception
        Specified by:
        run in class com.google.common.util.concurrent.AbstractExecutionThreadService
        Throws:
        java.lang.Exception
      • triggerShutdown

        public void triggerShutdown()
        Invoked by the Execution service when it's time to stop. Calling this method directly will NOT stop the service, call AbstractExecutionThreadService.stopAsync() instead.
        Overrides:
        triggerShutdown in class com.google.common.util.concurrent.AbstractExecutionThreadService