
io.fmq.address.Protocol.scala Maven / Gradle / Ivy
The newest version!
package io.fmq.address
sealed abstract class Protocol(val name: String)
object Protocol {
type TCP = TCP.type
type InProc = InProc.type
final case object TCP extends Protocol("tcp")
final case object InProc extends Protocol("inproc")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy