All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ray.runtime.serializer.Serializer Maven / Gradle / Ivy

The newest version!
package io.ray.runtime.serializer;

import org.apache.commons.lang3.tuple.Pair;

public class Serializer {

  public static Pair encode(Object obj) {
    return MessagePackSerializer.encode(obj);
  }

  @SuppressWarnings("unchecked")
  public static  T decode(byte[] bs, Class type) {
    return MessagePackSerializer.decode(bs, type);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy