net.i2p.client.streaming
class I2PSocketOptionsImpl extends Object implements I2PSocketOptions
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_BUFFER_SIZE |
static int |
DEFAULT_CONNECT_TIMEOUT |
static int |
DEFAULT_WRITE_TIMEOUT |
PROP_BUFFER_SIZE, PROP_CONNECT_TIMEOUT, PROP_READ_TIMEOUT, PROP_WRITE_TIMEOUT
Constructor and Description |
---|
I2PSocketOptionsImpl() |
I2PSocketOptionsImpl(I2PSocketOptions opts) |
I2PSocketOptionsImpl(Properties opts) |
Modifier and Type | Method and Description |
---|---|
long |
getConnectTimeout()
How long we will wait for the ACK from a SYN, in milliseconds.
|
protected static int |
getInt(Properties opts,
String name,
int defaultVal) |
int |
getMaxBufferSize()
How much data will we accept that hasn't been written out yet.
|
long |
getReadTimeout()
What is the longest we'll block on the input stream while waiting
for more data.
|
long |
getWriteTimeout()
What is the longest we'll block on the output stream while waiting
for the data to flush.
|
protected void |
init(Properties opts) |
void |
setConnectTimeout(long ms)
Define how long we will wait for the ACK from a SYN, in milliseconds.
|
void |
setMaxBufferSize(int numBytes)
How much data will we accept that hasn't been written out yet.
|
void |
setProperties(Properties opts) |
void |
setReadTimeout(long ms)
What is the longest we'll block on the input stream while waiting
for more data.
|
void |
setWriteTimeout(long ms)
What is the longest we'll block on the output stream while waiting
for the data to flush.
|
public static final int DEFAULT_BUFFER_SIZE
public static final int DEFAULT_WRITE_TIMEOUT
public static final int DEFAULT_CONNECT_TIMEOUT
public I2PSocketOptionsImpl()
public I2PSocketOptionsImpl(I2PSocketOptions opts)
public I2PSocketOptionsImpl(Properties opts)
public void setProperties(Properties opts)
protected void init(Properties opts)
protected static int getInt(Properties opts, String name, int defaultVal)
public long getConnectTimeout()
getConnectTimeout
in interface I2PSocketOptions
public void setConnectTimeout(long ms)
setConnectTimeout
in interface I2PSocketOptions
ms
- timeout in mspublic long getReadTimeout()
getReadTimeout
in interface I2PSocketOptions
public void setReadTimeout(long ms)
setReadTimeout
in interface I2PSocketOptions
ms
- timeout in mspublic int getMaxBufferSize()
getMaxBufferSize
in interface I2PSocketOptions
public void setMaxBufferSize(int numBytes)
setMaxBufferSize
in interface I2PSocketOptions
numBytes
- How much data will we accept that hasn't been written out yet.public long getWriteTimeout()
getWriteTimeout
in interface I2PSocketOptions
public void setWriteTimeout(long ms)
setWriteTimeout
in interface I2PSocketOptions
ms
- wait time to block on the output stream while waiting for the data to flush.