aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/attribute/ifieldupdatecallback.h
blob: 5db8b264c98bb4e3640da75c808221bb0e90c773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/stllike/string.h>

namespace search { class AttributeVector; }
namespace document { class Field; }

namespace proton {

struct IFieldUpdateCallback {
    virtual ~IFieldUpdateCallback() = default;
    virtual void onUpdateField(const document::Field & field, const search::AttributeVector * attr) = 0;
};

struct DummyFieldUpdateCallback : IFieldUpdateCallback {
    void onUpdateField(const document::Field & , const search::AttributeVector *) override {}
};

}