All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.org.apache.calcite.rel.core.Spool Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.hazelcast.org.apache.calcite.rel.core;

import com.hazelcast.org.apache.calcite.linq4j.function.Experimental;
import com.hazelcast.org.apache.calcite.plan.RelOptCluster;
import com.hazelcast.org.apache.calcite.plan.RelTraitSet;
import com.hazelcast.org.apache.calcite.rel.RelNode;
import com.hazelcast.org.apache.calcite.rel.RelWriter;
import com.hazelcast.org.apache.calcite.rel.SingleRel;

import java.util.List;
import java.util.Objects;

/**
 * Relational expression that iterates over its input and, in addition to
 * returning its results, will forward them into other consumers.
 *
 * 

NOTE: The current API is experimental and subject to change without * notice. */ @Experimental public abstract class Spool extends SingleRel { /** * Enumeration representing spool read / write type. */ public enum Type { EAGER, LAZY } /** * How the spool consumes elements from its input. * *

    *
  • EAGER: the spool consumes the elements from its input at once at the * initial request; *
  • LAZY: the spool consumes the elements from its input one by one by * request. *
*/ public final Type readType; /** * How the spool forwards elements to consumers. * *
    *
  • EAGER: the spool forwards each element as soon as it returns it; *
  • LAZY: the spool forwards all elements at once when it is done returning * all of them. *
*/ public final Type writeType; //~ Constructors ----------------------------------------------------------- /** Creates a Spool. */ protected Spool(RelOptCluster cluster, RelTraitSet traitSet, RelNode input, Type readType, Type writeType) { super(cluster, traitSet, input); this.readType = Objects.requireNonNull(readType, "readType"); this.writeType = Objects.requireNonNull(writeType, "writeType"); } @Override public final RelNode copy(RelTraitSet traitSet, List inputs) { return copy(traitSet, sole(inputs), readType, writeType); } protected abstract Spool copy(RelTraitSet traitSet, RelNode input, Type readType, Type writeType); @Override public RelWriter explainTerms(RelWriter pw) { return super.explainTerms(pw) .item("readType", readType) .item("writeType", writeType); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy