endless.core.protocol.EntityIDEncoder.scala Maven / Gradle / Ivy
package endless.core.protocol
/** Encode an entity ID into a string
* @tparam ID
* entity id
*/
trait EntityIDEncoder[-ID] {
def encode(id: ID): String
}
package endless.core.protocol
/** Encode an entity ID into a string
* @tparam ID
* entity id
*/
trait EntityIDEncoder[-ID] {
def encode(id: ID): String
}