2022-01-11 19:28:49 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
2022-01-23 10:41:57 +00:00
|
|
|
|
using PettingZoo.Core.ExportImport.Subscriber;
|
2022-01-11 19:28:49 +00:00
|
|
|
|
|
2022-01-23 19:33:27 +00:00
|
|
|
|
namespace PettingZoo.Tapeti.ExportImport
|
2022-01-11 19:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
public abstract class BaseTapetiCmdExportImportFormat : IExportImportFormat
|
|
|
|
|
{
|
|
|
|
|
public string Filter => TapetiCmdImportExportStrings.TapetiCmdFilter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// It would be nicer if Tapeti.Cmd exposed it's file format in a NuGet package... if only I knew the author ¯\_(ツ)_/¯
|
|
|
|
|
public class SerializableMessage
|
|
|
|
|
{
|
|
|
|
|
//public ulong DeliveryTag;
|
|
|
|
|
//public bool Redelivered;
|
|
|
|
|
public string? Exchange;
|
|
|
|
|
public string? RoutingKey;
|
|
|
|
|
//public string? Queue;
|
|
|
|
|
|
|
|
|
|
// ReSharper disable once FieldCanBeMadeReadOnly.Local - must be settable by JSON deserialization
|
|
|
|
|
public SerializableMessageProperties? Properties;
|
|
|
|
|
|
|
|
|
|
public JObject? Body;
|
|
|
|
|
public byte[]? RawBody;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class SerializableMessageProperties
|
|
|
|
|
{
|
|
|
|
|
public string? AppId;
|
|
|
|
|
//public string? ClusterId;
|
|
|
|
|
public string? ContentEncoding;
|
|
|
|
|
public string? ContentType;
|
|
|
|
|
public string? CorrelationId;
|
|
|
|
|
public byte? DeliveryMode;
|
|
|
|
|
public string? Expiration;
|
|
|
|
|
public IDictionary<string, string>? Headers;
|
|
|
|
|
public string? MessageId;
|
|
|
|
|
public byte? Priority;
|
|
|
|
|
public string? ReplyTo;
|
|
|
|
|
public long? Timestamp;
|
|
|
|
|
public string? Type;
|
|
|
|
|
public string? UserId;
|
|
|
|
|
}
|
|
|
|
|
}
|