Files
scylladb/sstables/remove.hh
Avi Kivity 851248e263 sstables: add a safe deletion function
Switch destructor to use this.

Add an sstable deletion function that is independent of the sstable class,
and so can be used on different shards.
2015-09-08 16:45:26 +03:00

18 lines
222 B
C++

/*
* Copyright (C) 2015 Cloudius Systems, Ltd.
*
*/
#pragma once
#include <seastar/core/sstring.hh>
#include <seastar/core/future.hh>
namespace sstables {
future<> remove_by_toc_name(sstring sstable_toc_name);
}