You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
574 B
18 lines
574 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.BLL.Storage
|
|
{
|
|
// Interface for namespaced storage
|
|
interface IStorageProvider
|
|
{
|
|
public Task<bool> NamespaceExists(string ns);
|
|
public Task CreateNamespace(string ns);
|
|
public Task Upload(string ns, string objectname, Stream data, long size);
|
|
public Task Download(string ns, string objectname, Action<Stream> callback);
|
|
public Task<bool> ObjectExists(string ns, string objectname);
|
|
}
|
|
}
|
|
|