Package ch.qos.logback.core.net.server
Class AbstractServerSocketAppender<E>
java.lang.Object
ch.qos.logback.core.spi.ContextAwareBase
ch.qos.logback.core.AppenderBase<E>
ch.qos.logback.core.net.server.AbstractServerSocketAppender<E>
- All Implemented Interfaces:
Appender<E>
,ContextAware
,FilterAttachable<E>
,LifeCycle
- Direct Known Subclasses:
ServerSocketAppender
,SSLServerSocketAppenderBase
@Deprecated(since="2022-01-27")
public abstract class AbstractServerSocketAppender<E>
extends AppenderBase<E>
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
This is the super class for module specific ServerSocketAppender
implementations can derive from.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Deprecated.DefaultServerSocket
backlogstatic final int
Deprecated.Default queue size used for each client -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the local address for the listener.int
Deprecated.Gets the listener queue depth.int
Deprecated.Gets the event queue size used for each client connection.int
getPort()
Deprecated.Gets the local port for the listener.void
setAddress
(String address) Deprecated.Sets the local address for the listener.void
setBacklog
(int backlog) Deprecated.Sets the listener queue depth.void
setClientQueueSize
(int clientQueueSize) Deprecated.Sets the event queue size used for each client connection.void
setPort
(int port) Deprecated.Sets the local port for the listener.void
start()
Deprecated.void
stop()
Deprecated.Methods inherited from class ch.qos.logback.core.AppenderBase
addFilter, clearAllFilters, doAppend, getCopyOfAttachedFiltersList, getFilterChainDecision, getName, isStarted, setName, toString
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getStatusManager, setContext
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.qos.logback.core.spi.ContextAware
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, setContext
-
Field Details
-
DEFAULT_BACKLOG
public static final int DEFAULT_BACKLOGDeprecated.DefaultServerSocket
backlog- See Also:
-
DEFAULT_CLIENT_QUEUE_SIZE
public static final int DEFAULT_CLIENT_QUEUE_SIZEDeprecated.Default queue size used for each client- See Also:
-
-
Constructor Details
-
AbstractServerSocketAppender
public AbstractServerSocketAppender()Deprecated.
-
-
Method Details
-
start
public void start()Deprecated.- Specified by:
start
in interfaceLifeCycle
- Overrides:
start
in classAppenderBase<E>
-
stop
public void stop()Deprecated.- Specified by:
stop
in interfaceLifeCycle
- Overrides:
stop
in classAppenderBase<E>
-
getPort
public int getPort()Deprecated.Gets the local port for the listener.- Returns:
- local port
-
setPort
public void setPort(int port) Deprecated.Sets the local port for the listener.- Parameters:
port
- the local port to set
-
getBacklog
public int getBacklog()Deprecated.Gets the listener queue depth.This represents the number of connected clients whose connections have not yet been accepted.
- Returns:
- queue depth
- See Also:
-
setBacklog
public void setBacklog(int backlog) Deprecated.Sets the listener queue depth.This represents the number of connected clients whose connections have not yet been accepted.
- Parameters:
backlog
- the queue depth to set- See Also:
-
getAddress
Deprecated.Gets the local address for the listener.- Returns:
- a string representation of the local address
-
setAddress
Deprecated.Sets the local address for the listener.- Parameters:
address
- a host name or a string representation of an IP address
-
getClientQueueSize
public int getClientQueueSize()Deprecated.Gets the event queue size used for each client connection.- Returns:
- queue size
-
setClientQueueSize
public void setClientQueueSize(int clientQueueSize) Deprecated.Sets the event queue size used for each client connection.- Parameters:
clientQueueSize
- the queue size to set
-