/
dsrelax
/
Tarantool.Queue.NetCore
Обзор
Документация
Войти
/
dsrelax
/
Tarantool.Queue.NetCore
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/IQueue.cs
28 строк
760 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 static Tarantool.Queues.Queue; using Tarantool.Queues.Options; using Tarantool.Queues.Model; using ProGaudi.Tarantool.Client.Model; namespace Tarantool.Queues { public interface IQueue : IDisposable { Task<TubeCreationOptions> GetTubeCreationOptions(string tubeName); Task<string> GetTubeEngine(string tubeName); Task<int> GetTubeId(string tubeName); Task<Tube> GetTube(string queueName); Task<QueueState> GetState(); Task<QueueStatistic> GetStatistics(); Guid SessionUUid { get; } string Version { get; } ClientOptions ClientOptions { get; } } }