Configure the [`SharedWorkSource`] for sibling work stealing.
(
mut self,
shared_work_source: Option<SharedWorkSource>,
)
| 86 | |
| 87 | /// Configure the [`SharedWorkSource`] for sibling work stealing. |
| 88 | pub(crate) fn with_shared_work_source( |
| 89 | mut self, |
| 90 | shared_work_source: Option<SharedWorkSource>, |
| 91 | ) -> Self { |
| 92 | self.shared_work_source = shared_work_source; |
| 93 | self |
| 94 | } |
| 95 | |
| 96 | /// Build the configured [`FileStream`]. |
| 97 | pub fn build(self) -> Result<FileStream> { |
no outgoing calls
no test coverage detected