You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/Models/ExchangeAttributes.cs

76 lines
2.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
namespace ZeroLevel.Network.Microservices
{
public abstract class ExchangeAttribute : Attribute { }
/// <summary>
/// Отмечает метод который является обработчиком сообщений по умолчанию
/// </summary>
public sealed class ExchangeMainHandlerAttribute : ExchangeAttribute { }
/// <summary>
/// Отмечает метод который является обработчиком запросов по умолчанию
/// </summary>
public sealed class ExchangeMainReplierAttribute : ExchangeAttribute { }
/// <summary>
/// Отмечает метод-обработчик сообщений для inbox'а с указанным именем
/// </summary>
public sealed class ExchangeHandlerAttribute : ExchangeAttribute
{
public string Inbox { get; }
public ExchangeHandlerAttribute(string inbox)
{
this.Inbox = inbox;
}
}
/// <summary>
/// Отмечает метод-обработчик запросов для inbox'а с указанным именем
/// </summary>
public sealed class ExchangeReplierAttribute : ExchangeAttribute
{
public string Inbox { get; }
public ExchangeReplierAttribute(string inbox)
{
this.Inbox = inbox;
}
}
/// <summary>
/// Отмечает метод-обработчик сообщений для inbox'а с указанным именем
/// </summary>
public sealed class ExchangeMainReplierWithoutArgAttribute : ExchangeAttribute { }
/// <summary>
/// Отмечает метод-обработчик запросов для inbox'а с указанным именем
/// </summary>
public sealed class ExchangeReplierWithoutArgAttribute : ExchangeAttribute
{
public string Inbox { get; }
public ExchangeReplierWithoutArgAttribute(string inbox)
{
this.Inbox = inbox;
}
}
public class ExchangeServerAttribute : Attribute
{
public string Protocol { get; }
public ExchangeServerAttribute(string protocol)
{
if (string.IsNullOrWhiteSpace(protocol)) throw new ArgumentNullException(nameof(protocol));
this.Protocol = protocol;
}
}
public class ExchangeClientAttribute : Attribute
{
public string Protocol { get; }
public ExchangeClientAttribute(string protocol)
{
if (string.IsNullOrWhiteSpace(protocol)) throw new ArgumentNullException(nameof(protocol));
this.Protocol = protocol;
}
}
}

Powered by TurnKey Linux.