Set whether to flush the writer after output. # Arguments `flush` - Whether to flush after writing # Example ```rust use atomic_core::output::repo::FileOutputOptions; let opts = FileOutputOptions::new().flush_after_write(false); assert!(!opts.flush_after_write); ```
(mut self, flush: bool)
| 220 | /// assert!(!opts.flush_after_write); |
| 221 | /// ``` |
| 222 | pub fn flush_after_write(mut self, flush: bool) -> Self { |
| 223 | self.flush_after_write = flush; |
| 224 | self |
| 225 | } |
| 226 | |
| 227 | /// Convert to retrieve options for the alive graph module. |
| 228 | fn to_retrieve_options(self) -> RetrieveOptions { |
no outgoing calls