aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/subscription/configsubscriber.cpp
blob: 5aa48d17e1aa2d299cb358739dd40d7669bd31d8 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "configsubscriber.h"
#include <vespa/config/common/configcontext.h>

namespace config {


ConfigSubscriber::ConfigSubscriber(std::shared_ptr<IConfigContext> context)
    : _set(std::move(context))

{ }

ConfigSubscriber::ConfigSubscriber(const SourceSpec & spec)
    : _set(std::make_shared<ConfigContext>(spec))
{ }

ConfigSubscriber::~ConfigSubscriber() = default;

bool
ConfigSubscriber::nextConfig(vespalib::duration timeout)
{
    return _set.acquireSnapshot(timeout, false);
}

bool
ConfigSubscriber::nextGeneration(vespalib::duration timeout)
{
    return _set.acquireSnapshot(timeout, true);
}

void
ConfigSubscriber::close()
{
    _set.close();
}

bool
ConfigSubscriber::isClosed() const
{
    return _set.isClosed();
}

int64_t
ConfigSubscriber::getGeneration() const
{
    return _set.getGeneration();
}

}