msgpack-scala icon indicating copy to clipboard operation
msgpack-scala copied to clipboard

MessagePack serializer implementation for Scala / msgpack.org[Scala]

Results 8 msgpack-scala issues
Sort by recently updated
recently updated
newest added

Used to work, but now getting this exception: ``` sbt.ResolveException: unresolved dependency: org.msgpack#msgpack-scala_2.10;0.8.13: not found at sbt.IvyActions$.sbt$IvyActions$$resolve(IvyActions.scala:291) at sbt.IvyActions$$anonfun$updateEither$1.apply(IvyActions.scala:188) at sbt.IvyActions$$anonfun$updateEither$1.apply(IvyActions.scala:165) at sbt.IvySbt$Module$$anonfun$withModule$1.apply(Ivy.scala:155) at sbt.IvySbt$Module$$anonfun$withModule$1.apply(Ivy.scala:155) at sbt.IvySbt$$anonfun$withIvy$1.apply(Ivy.scala:132) at sbt.IvySbt.sbt$IvySbt$$action$1(Ivy.scala:57) at...

I'm now prototyping pure-scala implementation of msgpack for supporting Scala, Scala.js, and Scala.native: https://github.com/wvlet/airframe/pull/127 Basic ideas for the implementation is as follows: - Having SPI for providing interfaces for implementing...

``` scala import org.msgpack.annotation.Message import org.msgpack.ScalaMessagePack import scala.collection.mutable @Message class A { var names: scala.collection.Seq[String] = Nil } object Main extends App { val a = new A() a.names =...

0.6.x

http://wiki.msgpack.org/display/MSGPACK/QuickStart+for+Scala Gives a 404.

0.6.x

I have a case-class that has this field: rank: Option[Int] = None, And MessagePack reports: Cannot find template for class scala.runtime.Nothing

0.6.x

It might not be an issue but part of my misunderstanding of the problem. Let me explain it before I comment the title. I'm trying to read into a class...

0.6.x

As reported here (http://taka7646.hatenablog.com/entry/2013/02/17/005658) case classes need an explicit constructor in order to remove the exception "Can't find plain constructor or companion object". Is this really needed f? Maybe for...

0.6.x

Can I deserialize the data, which serialized by msgpack-scala, by msgpack-c ?