- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for callFactory (0.06 sec)
-
okhttp-sse/src/main/kotlin/okhttp3/sse/EventSources.kt
replaceWith = ReplaceWith( expression = "callFactory.asEventSourceFactory()", imports = ["okhttp3.sse.EventSource.Factory.Companion.asEventSourceFactory"], ), level = DeprecationLevel.WARNING, ) @JvmStatic fun createFactory(callFactory: Call.Factory): EventSource.Factory = callFactory.asEventSourceFactory() @Deprecated( message = "Moved to extension function.",
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:47:47 UTC 2025 - 1.8K bytes - Viewed (0) -
samples/tlssurvey/src/main/kotlin/okhttp3/survey/ssllabs/SslLabsClient.kt
class SslLabsClient( callFactory: Call.Factory, ) { private val moshi = Moshi.Builder().build() private val moshiConverterFactory = MoshiConverterFactory.create(moshi) private val retrofit = Retrofit .Builder() .baseUrl(SslLabsApi.BASE_URL) .addConverterFactory(moshiConverterFactory) .callFactory(callFactory) .build()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.7K bytes - Viewed (0)