Skip to content

Instantly share code, notes, and snippets.

View abohomol's full-sized avatar

Anton Bohomol abohomol

  • San Francisco Bay Area
View GitHub Profile
interface CommunicationChannel {
@Throws(IOException::class)
fun connect(credentials: Credentials)
fun disconnect()
fun getChannelDescription(): Description
}