aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/helper/legacysubscriber.cpp
blob: 94ecb53b99c1867f132ffeb7c9e275405a7c3916 (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 Yahoo. 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