Files
rudder-csharp-sdk/Abstractions/IClock.cs
T

11 lines
245 B
C#
Raw Normal View History

2026-08-12 14:04:55 +03:00
using System;
namespace RudderSdk.Core.Abstractions;
/// <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; }
}