aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/base.h
blob: 78d9c39e4d3ed07e53ab6b57a74f3d8bab6492a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <util/system/defaults.h>

namespace NBus {
    /// millis since epoch 
    using TBusInstant = ui64; 
    /// returns time in milliseconds 
    TBusInstant Now(); 

}