// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable CS1591 using global::System; using global::System.IO; using global::System.Threading; using global::System.Threading.Tasks; namespace MediaBrowser.Model.IO; public interface IStreamHelper { Task CopyToAsync(Stream source, Stream destination, int bufferSize, Action? onStarted, CancellationToken cancellationToken); Task CopyToAsync(Stream source, Stream destination, int bufferSize, int emptyReadLimit, CancellationToken cancellationToken); Task CopyUntilCancelled(Stream source, Stream target, int bufferSize, CancellationToken cancellationToken); }