Package org.bitcoinj.net
Class BlockingClientManager
- java.lang.Object
-
- com.google.common.util.concurrent.AbstractIdleService
-
- org.bitcoinj.net.BlockingClientManager
-
- All Implemented Interfaces:
com.google.common.util.concurrent.Service
,ClientConnectionManager
public class BlockingClientManager extends com.google.common.util.concurrent.AbstractIdleService implements ClientConnectionManager
A thin wrapper around a set of
BlockingClient
s.Generally, using
NioClient
andNioClientManager
should be preferred overBlockingClient
andBlockingClientManager
as they scale significantly better, unless you wish to connect over a proxy or use some other network settings that cannot be set using NIO.
-
-
Constructor Summary
Constructors Constructor Description BlockingClientManager()
BlockingClientManager(javax.net.SocketFactory socketFactory)
Creates a blocking client manager that will obtain sockets from the given factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
closeConnections(int n)
Closes n peer connectionsint
getConnectedClientCount()
Gets the number of connected peersListenableCompletableFuture<java.net.SocketAddress>
openConnection(java.net.SocketAddress serverAddress, StreamConnection connection)
Creates a new connection to the given address, with the given connection used to handle incoming data.void
setConnectTimeout(java.time.Duration connectTimeout)
Sets the number of milliseconds to wait before giving up on a connect attemptvoid
setConnectTimeoutMillis(int connectTimeoutMillis)
Deprecated.protected void
shutDown()
protected void
startUp()
-
Methods inherited from class com.google.common.util.concurrent.AbstractIdleService
addListener, awaitRunning, awaitRunning, awaitTerminated, awaitTerminated, executor, failureCause, isRunning, serviceName, startAsync, state, stopAsync, toString
-
-
-
-
Constructor Detail
-
BlockingClientManager
public BlockingClientManager()
-
BlockingClientManager
public BlockingClientManager(javax.net.SocketFactory socketFactory)
Creates a blocking client manager that will obtain sockets from the given factory. Useful for customising how bitcoinj connects to the P2P network.
-
-
Method Detail
-
openConnection
public ListenableCompletableFuture<java.net.SocketAddress> openConnection(java.net.SocketAddress serverAddress, StreamConnection connection)
Description copied from interface:ClientConnectionManager
Creates a new connection to the given address, with the given connection used to handle incoming data. Any errors that occur during connection will be returned in the given future, including errors that can occur immediately.- Specified by:
openConnection
in interfaceClientConnectionManager
-
setConnectTimeout
public void setConnectTimeout(java.time.Duration connectTimeout)
Sets the number of milliseconds to wait before giving up on a connect attempt- Parameters:
connectTimeout
- timeout for establishing a connection to the client
-
setConnectTimeoutMillis
@Deprecated public void setConnectTimeoutMillis(int connectTimeoutMillis)
Deprecated.
-
startUp
protected void startUp() throws java.lang.Exception
- Specified by:
startUp
in classcom.google.common.util.concurrent.AbstractIdleService
- Throws:
java.lang.Exception
-
shutDown
protected void shutDown() throws java.lang.Exception
- Specified by:
shutDown
in classcom.google.common.util.concurrent.AbstractIdleService
- Throws:
java.lang.Exception
-
getConnectedClientCount
public int getConnectedClientCount()
Description copied from interface:ClientConnectionManager
Gets the number of connected peers- Specified by:
getConnectedClientCount
in interfaceClientConnectionManager
-
closeConnections
public void closeConnections(int n)
Description copied from interface:ClientConnectionManager
Closes n peer connections- Specified by:
closeConnections
in interfaceClientConnectionManager
-
-