Examples of SingleRegistrar


Examples of com.twitter.chill.SingleRegistrar

import java.util.BitSet;

public class BitSetSerializer extends Serializer<BitSet> {

    static public IKryoRegistrar registrar() {
      return new SingleRegistrar(BitSet.class, new BitSetSerializer());
    }
View Full Code Here

Examples of com.twitter.chill.SingleRegistrar

import java.util.UUID;

public class UUIDSerializer extends Serializer<UUID> {

   static public IKryoRegistrar registrar() {
      return new SingleRegistrar(UUID.class, new UUIDSerializer());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.