Package com.prineside.kryo


package com.prineside.kryo
Contains a fixed version of Input and Output from some of the older versions of Kryo, does not contain Kryo itself, meaning it is only good for a primitive data and is not a complete serialization solution. Used to generate a serialized byte streams for a data which has to be backwards compatible. Sticking to a single version of Input / Output guarantees that byte format of the serialized data won't change even if I choose to update Kryo. Note: the game also contains one of the latest versions of Kryo, which is used to serialize individual saved games that are only compatible with the same version of the game. These classes were moved to a separate package to avoid conflicts with the actual library.
  • Classes
    Class
    Description
    An InputStream that reads data from a byte array and optionally fills the byte array from another InputStream as needed.
    An OutputStream that buffers data in a byte array and optionally flushes to another OutputStream.