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