Class WindowedValue.ValueOnlyWindowedValueCoder<T>

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    WindowedValue<T>

    @Deprecated
    public static class WindowedValue.ValueOnlyWindowedValueCoder<T>
    extends WindowedValue.WindowedValueCoder<T>
    Deprecated.
    Use ParamWindowedValueCoder instead, it is a general purpose implementation of the same concept but makes timestamp, windows and pane info configurable.
    Coder for WindowedValue.

    A ValueOnlyWindowedValueCoder only encodes and decodes the value. It drops timestamp and windows for encoding, and uses defaults timestamp, and windows for decoding.

    See Also:
    Serialized Form
    • Method Detail

      • encode

        public void encode​(WindowedValue<T> windowedElem,
                           java.io.OutputStream outStream)
                    throws CoderException,
                           java.io.IOException
        Deprecated.
        Description copied from class: Coder
        Encodes the given value of type T onto the given output stream.
        Specified by:
        encode in class Coder<WindowedValue<T>>
        Throws:
        CoderException - if the value could not be encoded for some reason
        java.io.IOException - if writing to the OutputStream fails for some reason
      • encode

        public void encode​(WindowedValue<T> windowedElem,
                           java.io.OutputStream outStream,
                           Coder.Context context)
                    throws CoderException,
                           java.io.IOException
        Deprecated.
        Description copied from class: Coder
        Encodes the given value of type T onto the given output stream in the given context.
        Overrides:
        encode in class Coder<WindowedValue<T>>
        Throws:
        CoderException - if the value could not be encoded for some reason
        java.io.IOException - if writing to the OutputStream fails for some reason
      • decode

        public WindowedValue<T> decode​(java.io.InputStream inStream)
                                throws CoderException,
                                       java.io.IOException
        Deprecated.
        Description copied from class: Coder
        Decodes a value of type T from the given input stream in the given context. Returns the decoded value.
        Specified by:
        decode in class Coder<WindowedValue<T>>
        Throws:
        CoderException - if the value could not be decoded for some reason
        java.io.IOException - if reading from the InputStream fails for some reason
      • decode

        public WindowedValue<T> decode​(java.io.InputStream inStream,
                                       Coder.Context context)
                                throws CoderException,
                                       java.io.IOException
        Deprecated.
        Description copied from class: Coder
        Decodes a value of type T from the given input stream in the given context. Returns the decoded value.
        Overrides:
        decode in class Coder<WindowedValue<T>>
        Throws:
        CoderException - if the value could not be decoded for some reason
        java.io.IOException - if reading from the InputStream fails for some reason
      • verifyDeterministic

        public void verifyDeterministic()
                                 throws Coder.NonDeterministicException
        Deprecated.
        Description copied from class: Coder
        Throw Coder.NonDeterministicException if the coding is not deterministic.

        In order for a Coder to be considered deterministic, the following must be true:

        • two values that compare as equal (via Object.equals() or Comparable.compareTo(), if supported) have the same encoding.
        • the Coder always produces a canonical encoding, which is the same for an instance of an object even if produced on different computers at different times.
        Specified by:
        verifyDeterministic in class Coder<WindowedValue<T>>
        Throws:
        Coder.NonDeterministicException - if this coder is not deterministic.
      • getCoderArguments

        public java.util.List<? extends Coder<?>> getCoderArguments()
        Deprecated.
        Description copied from class: Coder
        If this is a Coder for a parameterized type, returns the list of Coders being used for each of the parameters in the same order they appear within the parameterized type's type signature. If this cannot be done, or this Coder does not encode/decode a parameterized type, returns the empty list.
        Specified by:
        getCoderArguments in class Coder<WindowedValue<T>>