private bool m_preferStriping; // If the results are indexible, should we use striping when partitioning them internal UnaryQueryOperatorResults(QueryResults <TInput> childQueryResults, UnaryQueryOperator <TInput, TOutput> op, QuerySettings settings, bool preferStriping) { m_childQueryResults = childQueryResults; m_op = op; m_settings = settings; m_preferStriping = preferStriping; }
internal ChildResultsRecipient(IPartitionedStreamRecipient <TOutput> outputRecipient, UnaryQueryOperator <TInput, TOutput> op, bool preferStriping, QuerySettings settings) { this.m_outputRecipient = outputRecipient; this.m_op = op; this.m_preferStriping = preferStriping; this.m_settings = settings; }