libretto.examples.libraryOfAlexandria.vendor.Connector.scala Maven / Gradle / Ivy
The newest version!
package libretto.examples.libraryOfAlexandria.vendor
object Connector {
def newInstance(): Connector =
new ConnectorImpl()
}
trait Connector {
def connect(): Connection
def close(): Unit
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy