Table of Contents

Interface IServerMethodProgress

Namespace
GroupeIsa.Neos.Application.MethodRunners
Assembly
GroupeIsa.Neos.Application.Abstractions.dll

Represents a service that reports progress of a server method.

public interface IServerMethodProgress

Methods

ReportAsync(int?, string?, CancellationToken)

Reports progress of the server method.

Task ReportAsync(int? percentProgress = null, string? message = null, CancellationToken cancellationToken = default)

Parameters

percentProgress int?

Percent progress.

message string

Message.

cancellationToken CancellationToken

Cancellation token.

Returns

Task

A Task representing the asynchronous operation.