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 shortgetKeepAliveIntervalSec()shortgetKeepAliveMaxFailedProbes()shortgetKeepAliveTimeoutSec()voidsetKeepAliveIntervalSec(short keepAliveIntervalSec)voidsetKeepAliveMaxFailedProbes(short keepAliveMaxFailedProbes)voidsetKeepAliveTimeoutSec(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)
-
-