namespace Beam.Exports {
public interface IStreamExporter : IAsyncExporter {
///
/// Asynchronously writes the object to the desired path in many parts, returning the path
/// of each written file as a stream
///
/// The path of the exported object
/// The async enumerator of each written file
public IAsyncEnumerator WriteAsyncStream(string path);
}
}