Object/Class

zio.nio

InetSocketAddress

Related Docs: class InetSocketAddress | package nio

Permalink

object InetSocketAddress

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InetSocketAddress
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hostName(hostName: String, port: Int)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates a socket address from a hostname and a port number.

    Creates a socket address from a hostname and a port number.

    This method will attempt to resolve the hostname; if this fails, the returned socket address will be unresolved.

  12. def hostNameEphemeral(hostName: String)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates a socket address from a hostname, with an ephemeral port.

    Creates a socket address from a hostname, with an ephemeral port.

    This method will attempt to resolve the hostname; if this fails, the returned socket address will be unresolved.

  13. def hostNameEphemeralResolved(hostName: String)(implicit trace: ZTraceElement): IO[UnknownHostException, InetSocketAddress]

    Permalink

    Creates a resolved socket address from a hostname, with an ephemeral port.

    Creates a resolved socket address from a hostname, with an ephemeral port.

    If the hostname cannot be resolved, fails with UnknownHostException.

  14. def hostNameResolved(hostName: String, port: Int)(implicit trace: ZTraceElement): IO[UnknownHostException, InetSocketAddress]

    Permalink

    Creates a resolved socket address from a hostname and port number.

    Creates a resolved socket address from a hostname and port number.

    If the hostname cannot be resolved, fails with UnknownHostException.

  15. def inetAddress(address: InetAddress, port: Int)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates a socket address from an IP address and a port number.

  16. def inetAddressEphemeral(address: InetAddress)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates a socket address from an IP address, with an ephemeral port.

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def localHost(port: Int)(implicit trace: ZTraceElement): IO[UnknownHostException, InetSocketAddress]

    Permalink

    Creates a socket address for localhost using the specified port.

  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. def unresolvedHostName(hostName: String, port: Int)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates an unresolved socket address from a hostname and a port number.

    Creates an unresolved socket address from a hostname and a port number.

    No attempt will be made to resolve the hostname into an InetAddress. The socket address will be flagged as unresolved.

  25. def unresolvedHostNameEphemeral(hostName: String)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates an unresolved socket address from a hostname using an ephemeral port.

    Creates an unresolved socket address from a hostname using an ephemeral port.

    No attempt will be made to resolve the hostname into an InetAddress. The socket address will be flagged as unresolved.

  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def wildCard(port: Int)(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates a socket address where the IP address is the wildcard address and the port number a specified value.

    Creates a socket address where the IP address is the wildcard address and the port number a specified value.

    The socket address will be resolved.

  30. def wildCardEphemeral(implicit trace: ZTraceElement): UIO[InetSocketAddress]

    Permalink

    Creates a socket address where the IP address is the wildcard address and the port is ephemeral.

    Creates a socket address where the IP address is the wildcard address and the port is ephemeral.

    The socket address will be resolved.

Inherited from AnyRef

Inherited from Any

Ungrouped