open class EngineConnectorBuilder : EngineConnectorConfig
Mutable implementation of EngineConnectorConfig for building connectors programmatically
EngineConnectorBuilder(type: ConnectorType = ConnectorType.HTTP)
Mutable implementation of EngineConnectorConfig for building connectors programmatically |
open var host: String
The network interface this host binds to as an IP address or a hostname. If null or 0.0.0.0, then bind to all interfaces. |
|
open var port: Int
The port this application should be bound to. |
|
open val type: ConnectorType
Type of the connector, e.g HTTP or HTTPS. |
open fun toString(): String |
class EngineSSLConnectorBuilder : EngineConnectorBuilder, EngineSSLConnectorConfig
Mutable implementation of EngineSSLConnectorConfig for building connectors programmatically |