summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/gatecallback.h
blob: 1e85d7960895a372d8c1f8009f410c9c47de3ac2 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "idestructorcallback.h"

namespace vespalib { class Gate; }

namespace search {

class GateCallback : public IDestructorCallback {
public:
    GateCallback(vespalib::Gate & gate) : _gate(gate) {}
    ~GateCallback() override;
private:
    vespalib::Gate & _gate;
};

class IgnoreCallback : public IDestructorCallback {
public:
    IgnoreCallback() { }
    ~IgnoreCallback() override = default;
};

} // namespace search