25 lines
659 B
C#
25 lines
659 B
C#
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LeanCloud.Storage.Internal
|
|
{
|
|
public interface IAVFileController
|
|
{
|
|
Task<FileState> SaveAsync(FileState state,
|
|
Stream dataStream,
|
|
string sessionToken,
|
|
IProgress<AVUploadProgressEventArgs> progress,
|
|
CancellationToken cancellationToken);
|
|
|
|
Task DeleteAsync(FileState state,
|
|
string sessionToken,
|
|
CancellationToken cancellationToken);
|
|
|
|
Task<FileState> GetAsync(string objectId,
|
|
string sessionToken,
|
|
CancellationToken cancellationToken);
|
|
}
|
|
}
|