// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System; using System.Collections.Generic; using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts; namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage { /// /// Interface for a object that writes to a filesystem wrapper /// public interface IFileStreamWriter : IDisposable { int WriteRow(StorageDataReader dataReader); void WriteRow(IList row, IList columns); void Seek(long offset); void FlushBuffer(); } }