using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.SignalR.Client; using Microsoft.Extensions.Logging; using Squirrowse.Core.Models; namespace Squirrowse.Client.Service { public class StreamService : IStreamService { private readonly IConnectionManager connectionManager; private readonly ILogger logger; private readonly HubConnection session; public StreamService(ILogger logger, IConnectionManager connectionManager) { this.connectionManager = connectionManager; this.logger = logger; session = connectionManager.Connect(); session.StartAsync(); } public async Task SayHello() { await session.SendAsync("AddToGroup", Groups.debug); } public async Task SendStreamAsync(IAsyncEnumerable asb) { logger.LogInformation($"{nameof(SendStreamAsync)} Start stream"); await session.SendAsync("UploadByteStream", asb); logger.LogInformation($"{nameof(SendStreamAsync)} End stream"); } } }