Packages

class TlsProxy extends StrictLogging with Runnable with AutoCloseable

Creates a TLS Proxy instance.

Linear Supertypes
AutoCloseable, Runnable, StrictLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TlsProxy
  2. AutoCloseable
  3. Runnable
  4. StrictLogging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TlsProxy(port: Int, interface: Option[String] = None, config: Config = Config())

    interface

    optional local interface address to bind to (e.g. "127.0.0.1", or "::1"). Binds to all interface when omitted

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def awaitShutdown(timeout: Duration): Boolean
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. def close(): Unit

    Schedule graceful shutdown of the proxy.

    Schedule graceful shutdown of the proxy. Waits for all established connections to close.

    This method does not block. Actual shutdown occurs asynchronously. Use awaitShutdown to wait for all resources to get closed.

    Since proxy connections are often kept alive, there is no guarantee if or when the proxy actually terminates.

    Definition Classes
    TlsProxy → AutoCloseable
  8. def closeNow(): Unit

    Shut down the proxy and actively close any established connections.

    Shut down the proxy and actively close any established connections.

    This method does not block. Actual shutdown occurs asynchronously. Use awaitShutdown to wait for all resources to get closed.

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def getConnectionCount: Int
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val logger: Logger
    Attributes
    protected
    Definition Classes
    StrictLogging
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def run(): Unit
    Definition Classes
    TlsProxy → Runnable
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AutoCloseable

Inherited from Runnable

Inherited from StrictLogging

Inherited from AnyRef

Inherited from Any

Ungrouped