Package software.amazon.awssdk.crt.s3
Class S3TcpKeepAliveOptions
- java.lang.Object
-
- software.amazon.awssdk.crt.s3.S3TcpKeepAliveOptions
-
public class S3TcpKeepAliveOptions extends Object
This class provides access to setting Tcp Keep Alive Options. If interval or timeout are zero, then default values are used.
-
-
Constructor Summary
Constructors Constructor Description S3TcpKeepAliveOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description short
getKeepAliveIntervalSec()
short
getKeepAliveMaxFailedProbes()
short
getKeepAliveTimeoutSec()
void
setKeepAliveIntervalSec(short keepAliveIntervalSec)
void
setKeepAliveMaxFailedProbes(short keepAliveMaxFailedProbes)
void
setKeepAliveTimeoutSec(short keepAliveTimeoutSec)
-
-
-
Method Detail
-
getKeepAliveIntervalSec
public short getKeepAliveIntervalSec()
-
setKeepAliveIntervalSec
public void setKeepAliveIntervalSec(short keepAliveIntervalSec)
-
getKeepAliveTimeoutSec
public short getKeepAliveTimeoutSec()
-
setKeepAliveTimeoutSec
public void setKeepAliveTimeoutSec(short keepAliveTimeoutSec)
-
getKeepAliveMaxFailedProbes
public short getKeepAliveMaxFailedProbes()
-
setKeepAliveMaxFailedProbes
public void setKeepAliveMaxFailedProbes(short keepAliveMaxFailedProbes)
-
-