forked from I2P_Developers/i2p.i2p

the code is JDK5 compliant. There remains some unchecked warnings, but these aren't important at this juncture.
85 lines
3.2 KiB
Java
85 lines
3.2 KiB
Java
package net.i2p.client.streaming;
|
|
|
|
/**
|
|
* Define the configuration for streaming and verifying data on the socket.
|
|
*
|
|
*/
|
|
public interface I2PSocketOptions {
|
|
/** How much data will we accept that hasn't been written out yet. */
|
|
public static final String PROP_BUFFER_SIZE = "i2p.streaming.bufferSize";
|
|
/** How long wait for the ACK from a SYN, in milliseconds. */
|
|
public static final String PROP_CONNECT_TIMEOUT = "i2p.streaming.connectTimeout";
|
|
/** How long to block on read. */
|
|
public static final String PROP_READ_TIMEOUT = "i2p.streaming.readTimeout";
|
|
/** How long to block on write/flush */
|
|
public static final String PROP_WRITE_TIMEOUT = "i2p.streaming.writeTimeout";
|
|
|
|
/**
|
|
* How long we will wait for the ACK from a SYN, in milliseconds.
|
|
*
|
|
* @return milliseconds to wait, or -1 if we will wait indefinitely
|
|
*/
|
|
public long getConnectTimeout();
|
|
|
|
/**
|
|
* Define how long we will wait for the ACK from a SYN, in milliseconds.
|
|
*
|
|
* @param ms timeout in ms
|
|
*/
|
|
public void setConnectTimeout(long ms);
|
|
|
|
/**
|
|
* What is the longest we'll block on the input stream while waiting
|
|
* for more data. If this value is exceeded, the read() throws
|
|
* InterruptedIOException
|
|
* @return timeout in ms
|
|
*/
|
|
public long getReadTimeout();
|
|
|
|
/**
|
|
* What is the longest we'll block on the input stream while waiting
|
|
* for more data. If this value is exceeded, the read() throws
|
|
* InterruptedIOException
|
|
* @param ms timeout in ms
|
|
*/
|
|
public void setReadTimeout(long ms);
|
|
|
|
/**
|
|
* How much data will we accept that hasn't been written out yet. After
|
|
* this amount has been exceeded, subsequent .write calls will block until
|
|
* either some data is removed or the connection is closed. If this is
|
|
* less than or equal to zero, there is no limit (warning: can eat ram)
|
|
*
|
|
* @return buffer size limit, in bytes
|
|
*/
|
|
public int getMaxBufferSize();
|
|
|
|
/**
|
|
* How much data will we accept that hasn't been written out yet. After
|
|
* this amount has been exceeded, subsequent .write calls will block until
|
|
* either some data is removed or the connection is closed. If this is
|
|
* less than or equal to zero, there is no limit (warning: can eat ram)
|
|
*
|
|
* @param numBytes How much data will we accept that hasn't been written out yet.
|
|
*/
|
|
public void setMaxBufferSize(int numBytes);
|
|
|
|
/**
|
|
* What is the longest we'll block on the output stream while waiting
|
|
* for the data to flush. If this value is exceeded, the write() throws
|
|
* InterruptedIOException. If this is less than or equal to zero, there
|
|
* is no timeout.
|
|
* @return wait time to block on the output stream while waiting for the data to flush.
|
|
*/
|
|
public long getWriteTimeout();
|
|
|
|
/**
|
|
* What is the longest we'll block on the output stream while waiting
|
|
* for the data to flush. If this value is exceeded, the write() throws
|
|
* InterruptedIOException. If this is less than or equal to zero, there
|
|
* is no timeout.
|
|
* @param ms wait time to block on the output stream while waiting for the data to flush.
|
|
*/
|
|
public void setWriteTimeout(long ms);
|
|
}
|