Factory

@Serializable
@SerialName(value = "!Postgres")
data class Factory(val hostname: String, val port: Int = 5432, val database: String, val username: String, val password: String) : Remote.Factory<PostgresRemote>

Constructors

Link copied to clipboard
constructor(hostname: String, port: Int = 5432, database: String, username: String, password: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val port: Int
Link copied to clipboard

Functions

Link copied to clipboard
open override fun open(): PostgresRemote