aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/unique_store_buffer_type.h
blob: cab892e29cb0869e9d8972ee5706a6e09e1f4f15 (plain) (blame)
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
27
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "buffer_type.h"
#include <memory>

namespace vespalib::alloc { class MemoryAllocator; }

namespace vespalib::datastore {

/*
 * Class representing buffer type for a normal unique store allocator.
 */
template <typename WrappedEntry>
class UniqueStoreBufferType : public BufferType<WrappedEntry>
{
    std::shared_ptr<alloc::MemoryAllocator> _memory_allocator;
public:
    UniqueStoreBufferType(uint32_t min_arrays, uint32_t max_arrays,
                          uint32_t num_arrays_for_new_buffer, float alloc_grow_factor,
                          std::shared_ptr<alloc::MemoryAllocator> memory_allocator) noexcept;
    ~UniqueStoreBufferType() override;
    const vespalib::alloc::MemoryAllocator* get_memory_allocator() const override;
};

}