OkHttpFactory

class OkHttpFactory(val base: OkHttpClient = okhttp3.OkHttpClient.Builder().build()) : ApiClientFactory, SocketConnectionFactory

Create a new factory that creates OkHttp ApiClient instances and SocketConnections on a shared connection pool. All instances will be built on top of the base okHttpClient.

Constructors

Link copied to clipboard
constructor(base: OkHttpClient = okhttp3.OkHttpClient.Builder().build())

Properties

Link copied to clipboard
val base: OkHttpClient

Functions

Link copied to clipboard
open override fun create(clientOptions: HttpClientOptions, scope: CoroutineScope): SocketConnection
open override fun create(baseUrl: String?, accessToken: String?, clientInfo: ClientInfo, deviceInfo: DeviceInfo, httpClientOptions: HttpClientOptions, socketConnectionFactory: SocketConnectionFactory): ApiClient
Link copied to clipboard
fun createClient(httpClientOptions: HttpClientOptions): OkHttpClient

Create a new okhttp3.OkHttpClient instance with the HttpClientOptions applied to it.