11 lines
247 B
C#
11 lines
247 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace RudderSdk.Core.Abstractions;
|
||
|
|
|
||
|
|
/// <summary>Time source used by the scenario runtime; override in tests.</summary>
|
||
|
|
public interface IClock
|
||
|
|
{
|
||
|
|
/// <summary>Current UTC time.</summary>
|
||
|
|
DateTimeOffset UtcNow { get; }
|
||
|
|
}
|