All checks were successful
DCO / DCO (pull_request) Successful in 33s
Signed-off-by: Pavel Gross <p.gross@yando.com>
10 lines
232 B
C#
10 lines
232 B
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FrostFS.SDK;
|
|
|
|
public interface IObjectReader : IDisposable
|
|
{
|
|
Task<ReadOnlyMemory<byte>?> ReadChunk(CancellationToken cancellationToken = default);
|
|
}
|