aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/data/slime/external_data_value.h
blob: f67d8135a3d6f49bef2c882ec5e92c9f1b9c4824 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "value.h"
#include "external_memory.h"

namespace vespalib::slime {

/**
 * A data value backed by external memory.
 **/
class ExternalDataValue : public Value
{
private:
    ExternalMemory::UP _value;
public:
    ExternalDataValue(ExternalMemory::UP data) : _value(std::move(data)) {}
    Memory asData() const override { return _value->get(); }
    Type type() const override { return DATA::instance; }
};

} // namespace vespalib::slime