All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightningkite.lightningserver.core.Disconnectable.kt Maven / Gradle / Ivy

The newest version!
package com.lightningkite.lightningserver.core

/**
 * Added calls for handling connecting and disconnecting to external services that require constant open connections
 * Ex: Database
 */
interface Disconnectable {
    suspend fun disconnect() {}
    suspend fun connect() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy