troychiu commented on issue #5277: URL: https://github.com/apache/arrow-rs/issues/5277#issuecomment-1876750988
Sounds good. I think we can have four methods. ```Rust get_file_opts(&self, location: &Path, file: &std::fs::File, options: GetOptions) -> Result<()> get_file(&self, location: &Path, file: &std::fs::File) -> Result<()> // (which will call get_file_opts with default option) put_file_opts(&self, location: &Path, file: &std::fs::File, options: PutOptions) -> Result<()> put_file(&self, location: &Path, file: &std::fs::File) -> Result<()> // (which will call put_file_opts with default option) ``` How do you think? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
