the core interface is a factory ``` class Factor...
# ktor
h
the core interface is a factory
Copy code
class Factory<T> { suspend fun create(): T; suspend fun destroy(): T  /*some other functions, empty by default  */ }