@Deprecated public static class WindowedValues.ValueOnlyWindowedValueCoder<T> extends WindowedValues.WindowedValueCoder<T>
WindowedValue.
A ValueOnlyWindowedValueCoder only encodes and decodes the value. It drops timestamp
and windows for encoding, and uses defaults timestamp, and windows for decoding.
Coder.Context, Coder.NonDeterministicException| Modifier and Type | Method and Description |
|---|---|
WindowedValue<T> |
decode(java.io.InputStream inStream)
Deprecated.
Decodes a value of type
T from the given input stream in the given context. |
WindowedValue<T> |
decode(java.io.InputStream inStream,
Coder.Context context)
Deprecated.
Decodes a value of type
T from the given input stream in the given context. |
void |
encode(WindowedValue<T> windowedElem,
java.io.OutputStream outStream)
Deprecated.
Encodes the given value of type
T onto the given output stream. |
void |
encode(WindowedValue<T> windowedElem,
java.io.OutputStream outStream,
Coder.Context context)
Deprecated.
Encodes the given value of type
T onto the given output stream in the given context. |
java.util.List<? extends Coder<?>> |
getCoderArguments()
Deprecated.
|
static <T> WindowedValues.ValueOnlyWindowedValueCoder<T> |
of(Coder<T> valueCoder)
Deprecated.
|
void |
registerByteSizeObserver(WindowedValue<T> value,
org.apache.beam.sdk.util.common.ElementByteSizeObserver observer)
Deprecated.
Notifies the
ElementByteSizeObserver about the byte size of the encoded value using
this Coder. |
void |
verifyDeterministic()
Deprecated.
Throw
Coder.NonDeterministicException if the coding is not deterministic. |
<NewT> WindowedValues.WindowedValueCoder<NewT> |
withValueCoder(Coder<NewT> valueCoder)
Deprecated.
Returns a new
WindowedValueCoder that is a copy of this one, but with a different
value coder. |
getValueCoderequals, getComponents, hashCode, toStringconsistentWithEquals, getEncodedElementByteSize, getEncodedElementByteSizeUsingCoder, getEncodedTypeDescriptor, isRegisterByteSizeObserverCheap, structuralValue, verifyDeterministic, verifyDeterministicpublic static <T> WindowedValues.ValueOnlyWindowedValueCoder<T> of(Coder<T> valueCoder)
public <NewT> WindowedValues.WindowedValueCoder<NewT> withValueCoder(Coder<NewT> valueCoder)
WindowedValues.WindowedValueCoderWindowedValueCoder that is a copy of this one, but with a different
value coder.withValueCoder in class WindowedValues.WindowedValueCoder<T>public void encode(WindowedValue<T> windowedElem, java.io.OutputStream outStream) throws CoderException, java.io.IOException
CoderT onto the given output stream. Multiple elements can
be encoded next to each other on the output stream, each coder should encode information to
know how many bytes to read when decoding. A common approach is to prefix the encoding with the
element's encoded length.encode in class Coder<WindowedValue<T>>CoderException - if the value could not be encoded for some reasonjava.io.IOException - if writing to the OutputStream fails for some reasonpublic void encode(WindowedValue<T> windowedElem, java.io.OutputStream outStream, Coder.Context context) throws CoderException, java.io.IOException
CoderT onto the given output stream in the given context.encode in class Coder<WindowedValue<T>>CoderException - if the value could not be encoded for some reasonjava.io.IOException - if writing to the OutputStream fails for some reasonpublic WindowedValue<T> decode(java.io.InputStream inStream) throws CoderException, java.io.IOException
CoderT from the given input stream in the given context. Returns the
decoded value. Multiple elements can be encoded next to each other on the input stream, each
coder should encode information to know how many bytes to read when decoding. A common approach
is to prefix the encoding with the element's encoded length.decode in class Coder<WindowedValue<T>>CoderException - if the value could not be decoded for some reasonjava.io.IOException - if reading from the InputStream fails for some reasonpublic WindowedValue<T> decode(java.io.InputStream inStream, Coder.Context context) throws CoderException, java.io.IOException
CoderT from the given input stream in the given context. Returns the
decoded value.decode in class Coder<WindowedValue<T>>CoderException - if the value could not be decoded for some reasonjava.io.IOException - if reading from the InputStream fails for some reasonpublic void verifyDeterministic()
throws Coder.NonDeterministicException
CoderCoder.NonDeterministicException if the coding is not deterministic.
In order for a Coder to be considered deterministic, the following must be true:
Object.equals() or Comparable.compareTo(), if supported) have the same encoding.
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.
verifyDeterministic in class Coder<WindowedValue<T>>Coder.NonDeterministicException - if this coder is not deterministic.public void registerByteSizeObserver(WindowedValue<T> value, org.apache.beam.sdk.util.common.ElementByteSizeObserver observer) throws java.lang.Exception
CoderElementByteSizeObserver about the byte size of the encoded value using
this Coder.
Not intended to be called by user code, but instead by PipelineRunner
implementations.
By default, this notifies observer about the byte size of the encoded value using
this coder as returned by Coder.getEncodedElementByteSize(T).
registerByteSizeObserver in class Coder<WindowedValue<T>>java.lang.Exceptionpublic java.util.List<? extends Coder<?>> getCoderArguments()
CoderCoder 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.getCoderArguments in class Coder<WindowedValue<T>>