#include <util/time.h>
#include <util/check.h>
#include <atomic>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <ctime>
#include <thread>
#include <tinyformat.h>
Go to the source code of this file.
| std::string FormatISO8601Date |
( |
int64_t |
nTime | ) |
|
| std::string FormatISO8601DateTime |
( |
int64_t |
nTime | ) |
|
ISO 8601 formatting is preferred.
Use the FormatISO8601{DateTime,Date} helper functions if possible.
Definition at line 81 of file time.cpp.
For testing.
Definition at line 55 of file time.cpp.
| int64_t GetSystemTimeInSeconds |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 76 of file time.cpp.
Return system time (or mocked time, if set)
DEPRECATED Use either GetSystemTimeInSeconds (not mockable) or GetTime<T> (mockable)
Definition at line 25 of file time.cpp.
| int64_t GetTimeMicros |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 68 of file time.cpp.
| int64_t GetTimeMillis |
( |
| ) |
|
Returns the system time (not mockable)
Definition at line 60 of file time.cpp.
| static std::atomic<int64_t> nMockTime |
( |
0 |
| ) |
|
|
static |
| int64_t ParseISO8601DateTime |
( |
const std::string & |
str | ) |
|
| void SetMockTime |
( |
int64_t |
nMockTimeIn | ) |
|
For testing.
Set e.g. with the setmocktime rpc, or -mocktime argument
Definition at line 49 of file time.cpp.
| void UninterruptibleSleep |
( |
const std::chrono::microseconds & |
n | ) |
|