2024-11-19 23:23:21 +04:00
|
|
|
using Cloud.Services.Broker.Support;
|
|
|
|
|
2024-11-13 03:32:30 +04:00
|
|
|
namespace Cloud.Services.Broker
|
|
|
|
{
|
|
|
|
public interface IBrokerConsumer
|
|
|
|
{
|
2024-11-19 23:23:21 +04:00
|
|
|
T? WaitMessage<T>(string topic) where T : IBrokerResponse;
|
2024-11-13 03:32:30 +04:00
|
|
|
}
|
|
|
|
}
|