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

loci.communicator.Connection.scala Maven / Gradle / Ivy

The newest version!
package loci
package communicator

trait Connection[+P <: ProtocolCommon] {
  val receive: Notice.Stream[MessageBuffer]
  val closed: Notice.Steady[Unit]

  def send(message: MessageBuffer): Unit
  def close(): Unit
  def open: Boolean

  val protocol: P
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy