Class ByteSerializer

java.lang.Object
com.jme3.network.serializing.Serializer
com.jme3.network.serializing.serializers.ByteSerializer

public class ByteSerializer extends Serializer
Byte serializer.
  • Constructor Details

    • ByteSerializer

      public ByteSerializer()
  • Method Details

    • readObject

      public Byte readObject(ByteBuffer data, Class c) throws IOException
      Description copied from class: Serializer
      Read an object from the buffer, effectively deserializing it.
      Specified by:
      readObject in class Serializer
      Parameters:
      data - The buffer to read from.
      c - The class of the object.
      Returns:
      The object read.
      Throws:
      IOException - If deserializing fails.
    • writeObject

      public void writeObject(ByteBuffer buffer, Object object) throws IOException
      Description copied from class: Serializer
      Write an object to the buffer, effectively serializing it.
      Specified by:
      writeObject in class Serializer
      Parameters:
      buffer - The buffer to write to.
      object - The object to serialize.
      Throws:
      IOException - If serializing fails.