mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
0c66607ed7
add user config queue offsets throttle improvements
16 lines
445 B
C#
16 lines
445 B
C#
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
public abstract class ExternalClientConfig
|
|
{
|
|
public string ZeroMqHost { get; set; } = "";
|
|
public int ZeroMqPort { get; set; }
|
|
public double OneTryTimeoutSeconds { get; set; }
|
|
public int RetryCount {get;set;}
|
|
}
|
|
|
|
public class InferenceClientConfig : ExternalClientConfig;
|
|
|
|
public class GpsDeniedClientConfig : ExternalClientConfig
|
|
{
|
|
public int ZeroMqSubscriberPort { get; set; }
|
|
} |