Home
last modified time | relevance | path

Searched refs:BlobDBListener (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/utilities/blob_db/
Dblob_db_listener.h19 class BlobDBListener : public EventListener {
21 explicit BlobDBListener(BlobDBImpl* blob_db_impl) in BlobDBListener() function
44 class BlobDBListenerGC : public BlobDBListener {
47 : BlobDBListener(blob_db_impl) {} in BlobDBListenerGC()
50 BlobDBListener::OnFlushCompleted(db, info); in OnFlushCompleted()
57 BlobDBListener::OnCompactionCompleted(db, info); in OnCompactionCompleted()
Dblob_db_impl.h72 friend class BlobDBListener; variable
Dblob_db_impl.cc200 db_options_.listeners.push_back(std::make_shared<BlobDBListener>(this)); in Open()