aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageframework/defaultimplementation/clock/realclock.h
blob: 3a9a127defe4c954b42ce20cbcf25186b341d91b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * \class storage::RealClock
 * \ingroup frameworkimpl
 *
 * \brief Implements a class for calculating current time.
 *
 * Real implementation for gathering all clock information used in application.
 */
#pragma once

#include <vespa/storageframework/generic/clock/clock.h>

namespace storage::framework::defaultimplementation {

struct RealClock : public Clock {
    vespalib::steady_time getMonotonicTime() const override;
    vespalib::system_time getSystemTime() const override;
};

}