Enum MetadataBlock.MetadataBlockType

    • Enum Constant Detail

      • EOS

        public static final MetadataBlock.MetadataBlockType EOS
        Indicates that this block is the final block to be sent (End Of Stream) as part of an operator chain computation.
      • NOOP

        public static final MetadataBlock.MetadataBlockType NOOP
        A NOOP metadata block can be sent at any point to and should be ignored by downstream - it is often used to indicate that the operator chain either has nothing to process or has processed data but is not yet ready to emit a result block.
    • Method Detail

      • values

        public static MetadataBlock.MetadataBlockType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared.
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MetadataBlock.MetadataBlockType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null