Cucumber/Cloud/Services/Broker/IBrokerConsumer.cs
2024-12-04 01:57:10 +04:00

9 lines
204 B
C#

using Cloud.Services.Broker.Support;
namespace Cloud.Services.Broker
{
public interface IBrokerConsumer
{
IEnumerable<T>? WaitMessages<T>(string topic) where T : IBrokerResponse;
}
}