10 lines
355 B
C#
10 lines
355 B
C#
|
|
// Copyright (c) The Geekeey Authors
|
||
|
|
// SPDX-License-Identifier: EUPL-1.2
|
||
|
|
|
||
|
|
namespace Geekeey.Request.Tests;
|
||
|
|
|
||
|
|
public abstract class BaseStreamHandler<TRequest> : IStreamRequestHandler<TRequest, string>
|
||
|
|
where TRequest : IStreamRequest<string>
|
||
|
|
{
|
||
|
|
public abstract IAsyncEnumerable<string> HandleAsync(TRequest request, CancellationToken cancellationToken);
|
||
|
|
}
|