修改bug:对象释放后访问对象的错误

This commit is contained in:
Jackson.Bruce
2020-04-01 16:04:02 +08:00
parent 2515e9dc3d
commit 61c39e1d3f
16 changed files with 434 additions and 305 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Ufangx.FileServices.Models;
namespace Ufangx.FileServices.Abstractions
{
public interface IResumableCreator
{
Task<IResumableInfo> Create(string fileName, long fileSize, string fileType, long blobCount, int blobSize, string schemeName = null, string dir = null, string name = null);
Task<IResumableInfo> Get(string key);
FileValidateResult Validate(string fileName, long fileSize, string schemeName);
}
}