Dreamine.Communication.RabbitMQ 1.0.1
Dreamine.Communication.RabbitMQ 통신 기능과 관련 API를 제공합니다.
로딩중...
검색중...
일치하는것 없음
RabbitMqDelivery.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class RabbitMqDelivery
12{
46 ulong deliveryTag,
47 string routingKey,
48 ReadOnlyMemory<byte> body)
49 {
50 DeliveryTag = deliveryTag;
51 RoutingKey = routingKey ?? string.Empty;
52 Body = body;
53 }
54
63 public ulong DeliveryTag { get; }
64
73 public string RoutingKey { get; }
74
83 public ReadOnlyMemory<byte> Body { get; }
84}
RabbitMqDelivery(ulong deliveryTag, string routingKey, ReadOnlyMemory< byte > body)