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

scorex.serialization.Deser.scala Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package scorex.serialization

import scala.util.Try

/**
  * Interface for objects, that can deserialize bytes to instance of T
  */
trait Deser[T] {

  def parseBytes(bytes: Array[Byte]): Try[T]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy