2019-11-01 19:04:24 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Squirrowse.Client.Service
|
|
|
|
|
{
|
|
|
|
|
public interface IStreamService
|
|
|
|
|
{
|
|
|
|
|
Task SendStreamAsync(IAsyncEnumerable<byte[]> asb);
|
2019-11-02 21:06:44 +01:00
|
|
|
|
Task SayHello();
|
2019-11-01 19:04:24 +01:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|