50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.SignalR.Client;
|
|
using Microsoft.Extensions.Logging;
|
|
using Squirrowse.Core.Models;
|
|
using Squirrowse.Core.Services;
|
|
|
|
namespace Squirrowse.Client.Service
|
|
{
|
|
public class ActionDispatcher : IActionDispatcher
|
|
{
|
|
private readonly IConnectionManager connectionManager;
|
|
private readonly ILogger<ActionDispatcher> logger;
|
|
private readonly HubConnection session;
|
|
private readonly ICameraService camera;
|
|
|
|
public ActionDispatcher(ILogger<ActionDispatcher> logger, IConnectionManager connectionManager,ICameraService camera)
|
|
{
|
|
this.connectionManager = connectionManager;
|
|
this.logger = logger;
|
|
this.camera = camera;
|
|
session.On("Start", StartStream);
|
|
session.On("Stop", StopStream);
|
|
}
|
|
|
|
public Task StopStream()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task SayHello()
|
|
{
|
|
await session.SendAsync("AddToGroup", Groups.debug);
|
|
}
|
|
|
|
public async Task SendStreamAsync(IAsyncEnumerable<byte[]> asb)
|
|
{
|
|
logger.LogInformation($"{nameof(SendStreamAsync)} Start stream");
|
|
await session.SendAsync("UploadByteStream", asb);
|
|
|
|
logger.LogInformation($"{nameof(SendStreamAsync)} End stream");
|
|
}
|
|
|
|
public async Task StartStream()
|
|
{
|
|
await SendStreamAsync(camera.GetFramesAsyncEnumerator());
|
|
}
|
|
}
|
|
} |