RestApiConnectorConfig

data class RestApiConnectorConfig(val keepAliveTime: Long, val connectionTimeout: Long, val connectionAttempts: Int)

Configuration data class for RestApiConnector.

Constructors

Link copied to clipboard
constructor(configMap: Map<*, *>)

Secondary constructor to create an instance of RestApiConnectorConfig from a configuration map.

constructor(keepAliveTime: Long, connectionTimeout: Long, connectionAttempts: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The number of attempts to establish a connection.

Link copied to clipboard

The timeout duration for the connection.

Link copied to clipboard

The time to keep the connection alive.