6c590ca520
- client.Effects: typed effects + completion methods posting scenario callbacks - client.Scenario reduced to TriggerAsync - pending polling via Update() pump: 30s heartbeat + wait-deadline checks - local engine, plan persistence (IPlanStateStore) and resume removed - RealtimeService and realtime transports removed (relay never deployed) - dead IPlanScheduler leftover removed - models regenerated from openapi (ExecutionPlan/BoundaryNode gone, PendingEffect added)
11 lines
245 B
C#
11 lines
245 B
C#
using System;
|
|
|
|
namespace RudderSdk.Core.Abstractions;
|
|
|
|
/// <summary>Time source used by the effects client; override in tests.</summary>
|
|
public interface IClock
|
|
{
|
|
/// <summary>Current UTC time.</summary>
|
|
DateTimeOffset UtcNow { get; }
|
|
}
|