Ejemplo n.º 1
0
        public async Task <IActionResult> Refresh(CancellationToken cancellationToken = default)
        {
            await _projector.StopAsync(cancellationToken);

            await _projector.ResetAsync(cancellationToken);

            await _projector.StartAsync(cancellationToken);

            return(Ok());
        }