/
dsrelax
/
Tarantool.Queue.NetCore
Обзор
Документация
Войти
/
dsrelax
/
Tarantool.Queue.NetCore
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Options/AnyTubeOptions.cs
25 строк
552 B
Дмитрий
Support of the user queue tubes is added
31 янв 2024, 23:01
31 янв 2024, 23:01
8c2adc8
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tarantool.Queues.Model; namespace Tarantool.Queues.Options { public class AnyTubeOptions : TubeOptions { public override QueueType QueueType { get; protected set; } = QueueType.customtube; public AnyTubeOptions() { } protected override void ValidateOptionName(string optionName) { } internal static TubeOptions Empty => new AnyTubeOptions(); } }