Class EmptyComponents.EmptySourceVertex<T>

    • Constructor Detail

      • EmptySourceVertex

        public EmptySourceVertex​(java.lang.String name)
        Constructor.
        Parameters:
        name - name for the vertex.
      • EmptySourceVertex

        public EmptySourceVertex​(java.lang.String name,
                                 int minNumReadables)
        Constructor.
        Parameters:
        name - name for the vertex.
        minNumReadables - for the vertex.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getPropertiesAsJsonNode

        public com.fasterxml.jackson.databind.node.ObjectNode getPropertiesAsJsonNode()
        Overrides:
        getPropertiesAsJsonNode in class Vertex
        Returns:
        JSON representation of additional properties
      • isBounded

        public boolean isBounded()
        Specified by:
        isBounded in class SourceVertex<T>
        Returns:
        true if it is bounded source
      • getReadables

        public java.util.List<Readable<T>> getReadables​(int desirednumOfSplits)
        Description copied from class: SourceVertex
        Gets parallel readables.
        Specified by:
        getReadables in class SourceVertex<T>
        Parameters:
        desirednumOfSplits - number of splits desired.
        Returns:
        the list of readables.
      • getEstimatedSizeBytes

        public long getEstimatedSizeBytes()
        Description copied from class: SourceVertex
        Gets the estimated size of bytes. Returns 0L if not applicable.
        Specified by:
        getEstimatedSizeBytes in class SourceVertex<T>
        Returns:
        size of input bytes.
      • clearInternalStates

        public void clearInternalStates()
        Description copied from class: SourceVertex
        Clears internal states, must be called after getReadables(). Concretely, this clears the huge list of input splits held by objects like BeamBoundedSourceVertex before sending the vertex to remote executors. Between clearing states of an existing vertex, and creating a new vertex, we've chosen the former approach to ensure consistent use of the same IRVertex object across the compiler, the master, and the executors.
        Specified by:
        clearInternalStates in class SourceVertex<T>
      • getClone

        public EmptyComponents.EmptySourceVertex<T> getClone()
        Description copied from interface: Cloneable
        Creates and returns a copy of this object.

        The precise meaning of "copy" may depend on the class of the object. The general intent is that, all fields of the object are copied.

        Returns:
        a clone of this object.