新通讯图像协议对接成功
This commit is contained in:
24
SHH.CameraService/Core/PushTargetConfig.cs
Normal file
24
SHH.CameraService/Core/PushTargetConfig.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace SHH.CameraService;
|
||||
|
||||
/// <summary>
|
||||
/// 定义发送的目标
|
||||
/// </summary>
|
||||
public class PushTargetConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// 目标名称
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
= string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// NetMQ 地址 (如 "tcp://1.2.3.4:5555")
|
||||
/// </summary>
|
||||
public string Endpoint { get; set; }
|
||||
= string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 独立队列容量 (隔离的关键)
|
||||
/// </summary>
|
||||
public int QueueCapacity { get; set; } = 10;
|
||||
}
|
||||
Reference in New Issue
Block a user