IBatch
using kCura.WinEDDS.Exporters;
using System.Threading;
using System.Threading.Tasks;
namespace kCura.WinEDDS
{
public interface IBatch
{
Task ExportAsync(ObjectExportInfo[] artifacts, VolumePredictions[] volumePredictions, CancellationToken cancellationToken);
}
}