aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IStreamHelper.cs
blob: e348cd72597ae6cd4ccf94c452c63b980dc4954e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma warning disable CS1591

using System;
using System.IO;
using System.Threading;
using 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<int> CopyToAsync(Stream source, Stream destination, CancellationToken cancellationToken);
        Task CopyToAsync(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken);

        Task CopyUntilCancelled(Stream source, Stream target, int bufferSize, CancellationToken cancellationToken);
    }
}