fluflu.msgpack.Unpacker.scala Maven / Gradle / Ivy
The newest version!
package fluflu.msgpack
import java.nio.ByteBuffer
trait Unpacker[A] {
def apply(bytes: ByteBuffer): Either[Throwable, A]
}
package fluflu.msgpack
import java.nio.ByteBuffer
trait Unpacker[A] {
def apply(bytes: ByteBuffer): Either[Throwable, A]
}