Class CachedSideInputReader
java.lang.Object
org.apache.beam.runners.spark.structuredstreaming.translation.batch.functions.CachedSideInputReader
- All Implemented Interfaces:
 org.apache.beam.runners.core.SideInputReader
@Internal
public class CachedSideInputReader
extends Object
implements org.apache.beam.runners.core.SideInputReader
SideInputReader that caches results for costly 
Materializations.
 Concurrent access is not expected, but it won't impact correctness.- 
Method Summary
Modifier and TypeMethodDescription<T> booleancontains(PCollectionView<T> view) <T> @Nullable Tget(PCollectionView<T> view, BoundedWindow window) booleanisEmpty()static org.apache.beam.runners.core.SideInputReaderof(org.apache.beam.runners.core.SideInputReader reader, Collection<PCollectionView<?>> views) Creates a SideInputReader that caches results for costlyMaterializationsif present, otherwise the SideInputReader is returned as is. 
- 
Method Details
- 
of
public static org.apache.beam.runners.core.SideInputReader of(org.apache.beam.runners.core.SideInputReader reader, Collection<PCollectionView<?>> views) Creates a SideInputReader that caches results for costlyMaterializationsif present, otherwise the SideInputReader is returned as is. Concurrent access is not expected, but it won't impact correctness. - 
get
- Specified by:
 getin interfaceorg.apache.beam.runners.core.SideInputReader
 - 
contains
- Specified by:
 containsin interfaceorg.apache.beam.runners.core.SideInputReader
 - 
isEmpty
public boolean isEmpty()- Specified by:
 isEmptyin interfaceorg.apache.beam.runners.core.SideInputReader
 
 -