Example #1
0
        public ArrowStreamReader(Stream stream, bool leaveOpen)
        {
            if (stream == null)
            {
                throw new ArgumentNullException(nameof(stream));
            }

            _implementation = new ArrowStreamReaderImplementation(stream, leaveOpen);
        }
Example #2
0
 private protected ArrowStreamReader(ArrowReaderImplementation implementation)
 {
     _implementation = implementation;
 }
Example #3
0
 public ArrowStreamReader(ReadOnlyMemory <byte> buffer)
 {
     _implementation = new ArrowMemoryReaderImplementation(buffer);
 }