12 lines
496 B
C#
12 lines
496 B
C#
namespace Beam.Exports {
|
|
public interface IStreamExporter : IAsyncExporter {
|
|
/// <summary>
|
|
/// Asynchronously writes the object to the desired path in many parts, returning the path
|
|
/// of each written file as a stream
|
|
/// </summary>
|
|
/// <param name="path">The path of the exported object</param>
|
|
/// <returns>The async enumerator of each written file</returns>
|
|
public IAsyncEnumerator<string> WriteAsyncStream(string path);
|
|
}
|
|
}
|