Files
Beam/Beam.Exports/IStreamExporter.cs
T
2025-04-19 20:47:58 +03:00

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);
}
}