blob: fbee92832089680d39aaa76b8d29d5787616a9a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under both the GPLv2 (found in the
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).
#pragma once
#ifndef ROCKSDB_LITE
#include "rocksdb/utilities/transaction_db_mutex.h"
namespace ROCKSDB_NAMESPACE {
class TransactionDBMutex;
class TransactionDBCondVar;
// Default implementation of TransactionDBMutexFactory. May be overridden
// by TransactionDBOptions.custom_mutex_factory.
class TransactionDBMutexFactoryImpl : public TransactionDBMutexFactory {
public:
std::shared_ptr<TransactionDBMutex> AllocateMutex() override;
std::shared_ptr<TransactionDBCondVar> AllocateCondVar() override;
};
} // namespace ROCKSDB_NAMESPACE
#endif // ROCKSDB_LITE
|