adamreeve commented on code in PR #39871:
URL: https://github.com/apache/arrow/pull/39871#discussion_r1480484164
##########
csharp/src/Apache.Arrow/Ipc/IpcOptions.cs:
##########
@@ -25,6 +25,23 @@ public class IpcOptions
/// </summary>
public bool WriteLegacyIpcFormat { get; set; }
+ /// <summary>
+ /// The compression codec to use to compress data buffers.
+ /// If null (the default value), no compression is used.
+ /// </summary>
+ public CompressionCodecType? CompressionCodec { get; set; }
+
+ /// <summary>
+ /// The compression codec factory used to create compression codecs.
+ /// Must be provided if a CompressionCodec is specified.
+ /// </summary>
+ public ICompressionCodecFactory CompressionCodecFactory { get; set; }
Review Comment:
Yeah that's true, although if you don't feel too strongly about it then I'm
happy to leave it as is.
--
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]