Class SplitResult<RestrictionT>
java.lang.Object
org.apache.beam.sdk.transforms.splittabledofn.SplitResult<RestrictionT>
A representation of a split result.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionabstract @Nullable RestrictionTReturns the primary restriction.abstract @Nullable RestrictionTReturns the residual restriction.static <RestrictionT>
SplitResult<RestrictionT> Returns aSplitResultfor the specified primary and residual restrictions. 
- 
Constructor Details
- 
SplitResult
public SplitResult() 
 - 
 - 
Method Details
- 
of
public static <RestrictionT> SplitResult<RestrictionT> of(@Nullable RestrictionT primary, @Nullable RestrictionT residual) Returns aSplitResultfor the specified primary and residual restrictions. - 
getPrimary
Returns the primary restriction. - 
getResidual
Returns the residual restriction. 
 -