blob: 82ab3c84276a0a5f29f3fb0ab70a49effec04fbc [file] [log] [blame]
using DotPulsar.Internal.PulsarApi;
using System.Buffers;
namespace DotPulsar.Internal
{
public sealed class SendPackage
{
public SendPackage(CommandSend command, PulsarApi.MessageMetadata metadata)
{
Command = command;
Metadata = metadata;
}
public CommandSend Command { get; }
public PulsarApi.MessageMetadata Metadata { get; set; }
public ReadOnlySequence<byte> Payload { get; set; }
}
}