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.
27 lines
480 B
27 lines
480 B
#pragma once
|
|
#include "rust/cxx.h"
|
|
#include <memory>
|
|
|
|
namespace org {
|
|
namespace blobstore {
|
|
|
|
struct MultiBuf;
|
|
struct BlobMetadata;
|
|
|
|
class BlobstoreClient {
|
|
public:
|
|
BlobstoreClient();
|
|
uint64_t put(MultiBuf &buf) const;
|
|
void tag(uint64_t blobid, rust::Str tag) const;
|
|
BlobMetadata metadata(uint64_t blobid) const;
|
|
|
|
private:
|
|
class impl;
|
|
std::shared_ptr<impl> impl;
|
|
};
|
|
|
|
std::unique_ptr<BlobstoreClient> new_blobstore_client();
|
|
|
|
} // namespace blobstore
|
|
} // namespace org
|