2026-08-12 14:04:55 +03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Abstractions;
|
|
|
|
|
|
2026-09-04 14:03:41 +03:00
|
|
|
/// <summary>Time source used by the effects client; override in tests.</summary>
|
2026-08-12 14:04:55 +03:00
|
|
|
public interface IClock
|
|
|
|
|
{
|
|
|
|
|
/// <summary>Current UTC time.</summary>
|
|
|
|
|
DateTimeOffset UtcNow { get; }
|
|
|
|
|
}
|