2019-11-04 09:29:37 +01:00
|
|
|
|
using System.Collections.Generic;
|
2019-11-01 19:04:24 +01:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Squirrowse.Client.Service
|
|
|
|
|
{
|
2019-11-05 17:00:36 +01:00
|
|
|
|
public interface IActionDispatcher
|
2019-11-01 19:04:24 +01:00
|
|
|
|
{
|
|
|
|
|
Task SendStreamAsync(IAsyncEnumerable<byte[]> asb);
|
2019-11-05 17:00:36 +01:00
|
|
|
|
Task StartStream();
|
|
|
|
|
Task StopStream();
|
2019-11-02 21:06:44 +01:00
|
|
|
|
Task SayHello();
|
2019-11-01 19:04:24 +01:00
|
|
|
|
}
|
2019-11-04 09:29:37 +01:00
|
|
|
|
}
|