*/
public class BlizzardKryoFactory implements IKryoFactory {
public Kryo getKryo(Map conf) {
KryoInstantiator kryoInst;
try {
kryoInst = new ConfiguredInstantiator(new JavaMapConfig(conf));
return kryoInst.newKryo();
}
catch(ConfigurationException cx) { throw new RuntimeException(cx); }
}