Giter VIP home page Giter VIP logo

Comments (3)

 avatar commented on August 19, 2024

From [email protected] on January 27, 2011 22:39:18

The stacktrace shows that you have constructed an EnumSerializer using a type that is not an enum. I have added a better exception for this in r140.

I have added serialization of an enum using optional registration in r141. It doesn't match your repro steps exactly, but does show the appropriate code is working correctly. Further tests, not checked in, confirm your exact use case works correctly.

Please post sample code if possible to show the problem.

Status: Invalid

from kryo.

 avatar commented on August 19, 2024

From [email protected] on February 03, 2011 09:25:14

Here is a little code snippet. I am not sure if I am doing something wrong here. I did not construct any serializer but used the default ones.
BTW, great library - I like it a lot.

import java.nio.ByteBuffer;
import com.esotericsoftware.kryo.Kryo;

public class KryoEnumTest {

public static void main(String[] args)  {
    Kryo kryo = new Kryo();
    kryo.register(E.class);
    ByteBuffer b = ByteBuffer.allocate(100);
    kryo.writeObjectData(b, E.E1);
    b.rewind();
    E instance = kryo.readObjectData(b, E.class);

}

}

enum E {
E1 { }, //Assuming some method definitions go here - left blank for simplicity

E2 { };

}

from kryo.

 avatar commented on August 19, 2024

From [email protected] on February 03, 2011 18:31:58

Ah, I see. Interested bug. Fixed in r143. Thanks!

Status: Fixed

from kryo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.