@ThreadSafe
public static interface StateRequestHandlers.MultimapSideInputHandlerFactory
StateRequestHandlers.MultimapSideInputHandlers.
Note that this factory should be thread safe because it will be invoked concurrently.
| Modifier and Type | Method and Description |
|---|---|
<K,V,W extends BoundedWindow> |
forSideInput(java.lang.String pTransformId,
java.lang.String sideInputId,
Coder<K> keyCoder,
Coder<V> valueCoder,
Coder<W> windowCoder)
|
static StateRequestHandlers.MultimapSideInputHandlerFactory |
unsupported()
Throws a
UnsupportedOperationException on the first access. |
<K,V,W extends BoundedWindow> StateRequestHandlers.MultimapSideInputHandler<K,V,W> forSideInput(java.lang.String pTransformId, java.lang.String sideInputId, Coder<K> keyCoder, Coder<V> valueCoder, Coder<W> windowCoder)
StateRequestHandlers.MultimapSideInputHandler for the given pTransformId and
sideInputId. The supplied keyCoder, valueCoder, and
windowCoder should be used to encode/decode their respective values.static StateRequestHandlers.MultimapSideInputHandlerFactory unsupported()
UnsupportedOperationException on the first access.