Dreamine.Communication.Core 1.0.2
Dreamine.Communication.Core 통신 기능과 관련 API를 제공합니다.
로딩중...
검색중...
일치하는것 없음
IMessageFrameCodec.cs
이 파일의 문서화 페이지로 가기
1using System.IO;
2using System.Threading;
3using System.Threading.Tasks;
4
6
15public interface IMessageFrameCodec
16{
74 Stream stream,
75 byte[] payload,
76 CancellationToken cancellationToken = default);
77
126 Task<byte[]?> ReadFrameAsync(
127 Stream stream,
128 CancellationToken cancellationToken = default);
129}
Task< byte[]?> ReadFrameAsync(Stream stream, CancellationToken cancellationToken=default)
Task WriteFrameAsync(Stream stream, byte[] payload, CancellationToken cancellationToken=default)