Package org.apache.flink.api.common.typeutils.base

Examples of org.apache.flink.api.common.typeutils.base.ByteSerializer


    return new ByteComparator(ascending);
  }

  @Override
  protected TypeSerializer<Byte> createSerializer() {
    return new ByteSerializer();
  }
View Full Code Here


*/
public class ByteSerializerTest extends SerializerTestBase<Byte> {
 
  @Override
  protected TypeSerializer<Byte> createSerializer() {
    return new ByteSerializer();
  }
View Full Code Here

TOP

Related Classes of org.apache.flink.api.common.typeutils.base.ByteSerializer

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.