Package com.twitter.chill

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


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

Related Classes of com.twitter.chill.SingleRegistrar

Copyright © 2018 www.massapicom. 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.