- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for shutdownInput (0.16 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
/** An [SSLSocket] that delegates all calls. */ abstract class DelegatingSSLSocket(protected val delegate: SSLSocket?) : SSLSocket() { @Throws(IOException::class) override fun shutdownInput() { delegate!!.shutdownInput() } @Throws(IOException::class) override fun shutdownOutput() { delegate!!.shutdownOutput() } override fun getSupportedCipherSuites(): Array<String> {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
when (response.socketPolicy) { DisconnectAtEnd, is DoNotReadRequestBody -> { socket.close() return false } ShutdownInputAtEnd -> socket.shutdownInput() ShutdownOutputAtEnd -> socket.shutdownOutput() ShutdownServerAfterResponse -> shutdown() else -> { } } sequenceNumber++ return reuseSocket }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 37.4K bytes - Viewed (0)