Package ch.qos.logback.classic.net
Class SocketReceiver
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.classic.net.ReceiverBase
-
- ch.qos.logback.classic.net.SocketReceiver
-
- All Implemented Interfaces:
SocketConnector.ExceptionHandler,ContextAware,LifeCycle,Runnable
- Direct Known Subclasses:
SSLSocketReceiver
public class SocketReceiver extends ReceiverBase implements Runnable, SocketConnector.ExceptionHandler
A component that receives serializedILoggingEventobjects from a remote appender over aSocket.- Author:
- Carl Harris
-
-
Field Summary
-
Fields inherited from class ch.qos.logback.core.spi.ContextAwareBase
context
-
-
Constructor Summary
Constructors Constructor Description SocketReceiver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconnectionFailed(SocketConnector connector, Exception ex)protected RunnablegetRunnableTask()Provides the runnable task this receiver will execute.protected SocketFactorygetSocketFactory()protected SocketConnectornewConnector(InetAddress address, int port, int initialDelay, int retryDelay)protected voidonStop()Allows a subclass to participate in receiver shutdown.voidrun()voidsetAcceptConnectionTimeout(int acceptConnectionTimeout)voidsetPort(int port)voidsetReconnectionDelay(int reconnectionDelay)voidsetRemoteHost(String remoteHost)protected booleanshouldStart()Determines whether this receiver should start.-
Methods inherited from class ch.qos.logback.classic.net.ReceiverBase
isStarted, start, stop
-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
-
-
-
-
Method Detail
-
shouldStart
protected boolean shouldStart()
Determines whether this receiver should start.Subclasses will implement this method to do any subclass-specific validation. The subclass's
ReceiverBase.getRunnableTask()method will be invoked (and the task returned will be submitted to the executor) if and only if this method returnstrue- Specified by:
shouldStartin classReceiverBase- Returns:
- flag indicating whether this receiver should start
-
onStop
protected void onStop()
Allows a subclass to participate in receiver shutdown.- Specified by:
onStopin classReceiverBase
-
getRunnableTask
protected Runnable getRunnableTask()
Description copied from class:ReceiverBaseProvides the runnable task this receiver will execute.- Specified by:
getRunnableTaskin classReceiverBase- Returns:
- runnable task
-
connectionFailed
public void connectionFailed(SocketConnector connector, Exception ex)
- Specified by:
connectionFailedin interfaceSocketConnector.ExceptionHandler
-
newConnector
protected SocketConnector newConnector(InetAddress address, int port, int initialDelay, int retryDelay)
-
getSocketFactory
protected SocketFactory getSocketFactory()
-
setRemoteHost
public void setRemoteHost(String remoteHost)
-
setPort
public void setPort(int port)
-
setReconnectionDelay
public void setReconnectionDelay(int reconnectionDelay)
-
setAcceptConnectionTimeout
public void setAcceptConnectionTimeout(int acceptConnectionTimeout)
-
-