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

#include "legacysubscriber.h"

namespace config {

LegacySubscriber::LegacySubscriber()
    : _fetcher(),
      _configId()
{
}

LegacySubscriber::~LegacySubscriber() {}

void
LegacySubscriber::close()
{
    if (_fetcher.get() != NULL)
        _fetcher->close();
}

} // namespace config