HttpClientEngineBase
Parameters
engineName
The name of the engine, used for debugging and context naming.
Example:
class MyCustomHttpClientEngine : HttpClientEngineBase("MyCustomEngine") {
override suspend fun execute(data: HttpRequestData): HttpResponseData {
// Implementation of request execution
}
}
Content copied to clipboard