Class DefaultSocketConnector

java.lang.Object
ch.qos.logback.core.net.DefaultSocketConnector
All Implemented Interfaces:
SocketConnector, Callable<Socket>

@Deprecated(since="2022-01-27") public class DefaultSocketConnector extends Object implements SocketConnector
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
Default implementation of SocketConnector.
Since:
1.0.12
  • Constructor Details

    • DefaultSocketConnector

      public DefaultSocketConnector(InetAddress address, int port, long initialDelay, long retryDelay)
      Deprecated.
      Constructs a new connector.
      Parameters:
      address - address of remote listener
      port - port of remote listener
      initialDelay - delay before initial connection attempt
      retryDelay - delay after failed connection attempt
    • DefaultSocketConnector

      public DefaultSocketConnector(InetAddress address, int port, DelayStrategy delayStrategy)
      Deprecated.
      Constructs a new connector.
      Parameters:
      address - address of remote listener
      port - port of remote listener
      delayStrategy - strategy for choosing the delay to impose before each connection attempt
  • Method Details