Files
JiboExperiments/OpenJibo/src/Jibo.Runtime.Abstractions/IRobotEventSource.cs

6 lines
176 B
C#
Raw Normal View History

2026-03-23 07:51:32 -05:00
namespace Jibo.Runtime.Abstractions;
public interface IRobotEventSource
{
IAsyncEnumerable<RobotEvent> ReadEventsAsync(CancellationToken cancellationToken = default);
}