public static class WindowedValue.FullWindowedValueCoder<T> extends WindowedValue.WindowedValueCoder<T>
WindowedValue.Coder.Context, Coder.NonDeterministicException| Modifier and Type | Method and Description |
|---|---|
WindowedValue<T> |
decode(java.io.InputStream inStream)
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)
Decodes a value of type
T from the given input stream in the given context. |
void |
encode(WindowedValue<T> windowedElem,
java.io.OutputStream outStream)
Encodes the given value of type
T onto the given output stream. |
void |
encode(WindowedValue<T> windowedElem,
java.io.OutputStream outStream,
Coder.Context context)
Encodes the given value of type
T onto the given output stream in the given context. |
java.util.List<? extends Coder<?>> |
getCoderArguments()
|
java.util.List<? extends Coder<?>> |
getComponents()
|
Coder<? extends BoundedWindow> |
getWindowCoder() |
Coder<java.util.Collection<? extends BoundedWindow>> |
getWindowsCoder() |
static <T> WindowedValue.FullWindowedValueCoder<T> |
of(Coder<T> valueCoder,
Coder<? extends BoundedWindow> windowCoder) |
void |
registerByteSizeObserver(WindowedValue<T> value,
ElementByteSizeObserver observer)
Notifies the
ElementByteSizeObserver about the byte size of the encoded value using
this Coder. |
void |
verifyDeterministic()
Throw
Coder.NonDeterministicException if the coding is not deterministic. |
<NewT> WindowedValue.WindowedValueCoder<NewT> |
withValueCoder(Coder<NewT> valueCoder)
Returns a new
WindowedValueCoder that is a copy of this one, but with a different
value coder. |
getValueCoderequals, hashCode, toStringconsistentWithEquals, getEncodedElementByteSize, getEncodedTypeDescriptor, isRegisterByteSizeObserverCheap, structuralValue, verifyDeterministic, verifyDeterministicpublic static <T> WindowedValue.FullWindowedValueCoder<T> of(Coder<T> valueCoder, Coder<? extends BoundedWindow> windowCoder)
public Coder<? extends BoundedWindow> getWindowCoder()
public Coder<java.util.Collection<? extends BoundedWindow>> getWindowsCoder()
public <NewT> WindowedValue.WindowedValueCoder<NewT> withValueCoder(Coder<NewT> valueCoder)
WindowedValue.WindowedValueCoderWindowedValueCoder that is a copy of this one, but with a different
value coder.withValueCoder in class WindowedValue.WindowedValueCoder<T>public void encode(WindowedValue<T> windowedElem, java.io.OutputStream outStream) throws CoderException, java.io.IOException
CoderT onto the given output stream.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.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, 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()
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..getCoderArguments in class Coder<WindowedValue<T>>valueCoder of this WindowedValue.FullWindowedValueCoder.public java.util.List<? extends Coder<?>> getComponents()
StructuredCoderCoders that are components of this Coder.
The default components will be equal to the value returned by Coder.getCoderArguments().
getComponents in class StructuredCoder<WindowedValue<T>>