Package com.twitter.chill

Examples of com.twitter.chill.IKryoRegistrar


    }
    kryo.writeClassAndObject(output, null);
  }
  public IterableRegistrar read(Kryo kryo, Input input, Class<IterableRegistrar> type) {
    ArrayList<IKryoRegistrar> krs = new ArrayList<IKryoRegistrar>();
    IKryoRegistrar thisKr = (IKryoRegistrar)kryo.readClassAndObject(input);
    while(thisKr != null) {
      krs.add(thisKr);
      thisKr = (IKryoRegistrar)kryo.readClassAndObject(input);
    }
    return new IterableRegistrar(krs);
View Full Code Here

TOP

Related Classes of com.twitter.chill.IKryoRegistrar

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.