com.jn.agileway.codec.serialization.kryo.customizer.LangxJavaKryoCustomizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agileway-codec Show documentation
Show all versions of agileway-codec Show documentation
Provide an unified codec API for hession, kryo, protostuff, fst, fes, xson, cbor, jackson, json, etc....
package com.jn.agileway.codec.serialization.kryo.customizer;
import com.esotericsoftware.kryo.Kryo;
import com.jn.agileway.codec.serialization.kryo.KryoCustomizer;
public class LangxJavaKryoCustomizer implements KryoCustomizer {
@Override
public String getName() {
return "langx_java";
}
@Override
public void customize(Kryo kryo) {
}
}