6 lines
176 B
C#
6 lines
176 B
C#
namespace Jibo.Runtime.Abstractions;
|
|
|
|
public interface IRobotEventSource
|
|
{
|
|
IAsyncEnumerable<RobotEvent> ReadEventsAsync(CancellationToken cancellationToken = default);
|
|
} |