Package org.springframework.xd.tuple

Examples of org.springframework.xd.tuple.DefaultTuple


    kryo.writeObject(output, object);
  }

  @Override
  protected Tuple doDeserialize(Kryo kryo, Input input) {
    DefaultTuple tuple = kryo.readObject(input, DefaultTuple.class);
    restoreConversionService(tuple);

    return tuple;
  }
View Full Code Here

TOP

Related Classes of org.springframework.xd.tuple.DefaultTuple

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.