Interface SocketAddressResolver

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static class  SocketAddressResolver.Async
      Creates SocketAddress instances asynchronously in a different thread.
      static class  SocketAddressResolver.Sync
      Creates SocketAddress instances synchronously in the caller thread.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void resolve​(java.lang.String host, int port, Promise<java.util.List<java.net.InetSocketAddress>> promise)
      Resolves the given host and port, returning a SocketAddress through the given Promise with the default timeout.
    • Method Detail

      • resolve

        void resolve​(java.lang.String host,
                     int port,
                     Promise<java.util.List<java.net.InetSocketAddress>> promise)
        Resolves the given host and port, returning a SocketAddress through the given Promise with the default timeout.
        Parameters:
        host - the host to resolve
        port - the port of the resulting socket address
        promise - the callback invoked when the resolution succeeds or fails