Package lupos.engine.operators.multiinput.join

Examples of lupos.engine.operators.multiinput.join.LeafNodeInPartitionTree


  public final static NodeInPartitionTree readLuposNodeInPartitionTree(final InputStream in) throws IOException, ClassNotFoundException {
    final byte type = InputHelper.readLuposByte(in);
    switch (type) {
    case 1:
      final Collection<Bindings> coll = PagedCollection.readAndCreateLuposObject(in);
      return new LeafNodeInPartitionTree(new QueryResult(coll));
    default:
    case 2:
      final PagedCollection<NodeInPartitionTree> pcoll = PagedCollection.readAndCreateLuposObject(in);
      return new InnerNodeInPartitionTree(pcoll);
    }
View Full Code Here

TOP

Related Classes of lupos.engine.operators.multiinput.join.LeafNodeInPartitionTree

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.