Package org.bitcoinj.net
Class AbstractTimeoutHandler
- java.lang.Object
-
- org.bitcoinj.net.AbstractTimeoutHandler
-
- All Implemented Interfaces:
TimeoutHandler
@Deprecated public abstract class AbstractTimeoutHandler extends java.lang.Object implements TimeoutHandler
Deprecated.Don't extend this class, implementTimeoutHandlerusingSocketTimeoutTaskinsteadA base class which provides basic support for socket timeouts. It is used instead of integrating timeouts into the NIO select thread both for simplicity and to keep code shared between NIO and blocking sockets as much as possible.
-
-
Constructor Summary
Constructors Constructor Description AbstractTimeoutHandler()Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidresetTimeout()Deprecated.Resets the current progress towards timeout to 0.voidsetSocketTimeout(java.time.Duration timeout)Deprecated.Sets the receive timeout, automatically killing the connection if no messages are received for this longvoidsetTimeoutEnabled(boolean timeoutEnabled)Deprecated.Enables or disables the timeout entirely.protected abstract voidtimeoutOccurred()Deprecated.
-
-
-
Method Detail
-
setTimeoutEnabled
public final void setTimeoutEnabled(boolean timeoutEnabled)
Deprecated.Enables or disables the timeout entirely. This may be useful if you want to store the timeout value but wish to temporarily disable/enable timeouts.
The default is for timeoutEnabled to be true but timeout to be set to
Duration.ZERO(ie disabled).This call will reset the current progress towards the timeout.
- Specified by:
setTimeoutEnabledin interfaceTimeoutHandler
-
setSocketTimeout
public final void setSocketTimeout(java.time.Duration timeout)
Deprecated.Sets the receive timeout, automatically killing the connection if no messages are received for this long
A timeout of 0
Duration.ZEROis interpreted as no timeout.The default is for timeoutEnabled to be true but timeout to be set to
Duration.ZERO(ie disabled).This call will reset the current progress towards the timeout.
- Specified by:
setSocketTimeoutin interfaceTimeoutHandler
-
resetTimeout
protected void resetTimeout()
Deprecated.Resets the current progress towards timeout to 0.
-
timeoutOccurred
protected abstract void timeoutOccurred()
Deprecated.
-
-