Home
last modified time | relevance | path

Searched refs:tcpKeepAliveOptions (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/s3/
H A DS3ClientOptions.java74 private S3TcpKeepAliveOptions tcpKeepAliveOptions; field in S3ClientOptions
298 public S3ClientOptions withS3TcpKeepAliveOptions(S3TcpKeepAliveOptions tcpKeepAliveOptions) { in withS3TcpKeepAliveOptions() argument
299 this.tcpKeepAliveOptions = tcpKeepAliveOptions; in withS3TcpKeepAliveOptions()
304 return tcpKeepAliveOptions; in getTcpKeepAliveOptions()
H A DS3Client.java225 S3TcpKeepAliveOptions tcpKeepAliveOptions, in s3ClientNew() argument
/aosp_15_r20/external/aws-crt-java/src/test/java/software/amazon/awssdk/crt/test/
H A DS3ClientTest.java210 S3TcpKeepAliveOptions tcpKeepAliveOptions = new S3TcpKeepAliveOptions(); in testS3ClientCreateDestroyTcpKeepAliveOptions() local
211 tcpKeepAliveOptions.setKeepAliveIntervalSec((short) 10); in testS3ClientCreateDestroyTcpKeepAliveOptions()
212 tcpKeepAliveOptions.setKeepAliveTimeoutSec((short) 20); in testS3ClientCreateDestroyTcpKeepAliveOptions()
213 tcpKeepAliveOptions.setKeepAliveMaxFailedProbes((short) 30); in testS3ClientCreateDestroyTcpKeepAliveOptions()
216 .withS3TcpKeepAliveOptions(tcpKeepAliveOptions), elg)) { in testS3ClientCreateDestroyTcpKeepAliveOptions()