Package ch.qos.logback.core.net
Interface SocketConnector
-
- All Known Implementing Classes:
DefaultSocketConnector
public interface SocketConnector extends Callable<Socket>
ARunnablethat (re)connects a socket.An implementation of this interface is responsible for repeatedly attempting to create a socket connection to a remote host.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceSocketConnector.ExceptionHandlerAn exception handler that is notified of all exceptions that occur during the (re)connection process.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Socketcall()Blocks the calling thread until a connection is successfully established.voidsetExceptionHandler(SocketConnector.ExceptionHandler exceptionHandler)Sets the connector's exception handler.voidsetSocketFactory(SocketFactory socketFactory)Sets the connector's socket factory.
-
-
-
Method Detail
-
call
Socket call() throws InterruptedException
Blocks the calling thread until a connection is successfully established.- Specified by:
callin interfaceCallable<Socket>- Returns:
- the connected socket
- Throws:
InterruptedException
-
setExceptionHandler
void setExceptionHandler(SocketConnector.ExceptionHandler exceptionHandler)
Sets the connector's exception handler.The handler must be set before the
call()method is invoked.- Parameters:
exceptionHandler- the handler to set
-
setSocketFactory
void setSocketFactory(SocketFactory socketFactory)
Sets the connector's socket factory.If no factory is configured that connector will use the platform's default factory.
- Parameters:
socketFactory- the factory to set
-
-