2024-11-13 03:32:30 +04:00
|
|
|
using Cloud.Services.Broker.Support;
|
|
|
|
|
|
|
|
namespace Cloud.Services.Broker
|
|
|
|
{
|
2024-12-04 01:57:10 +04:00
|
|
|
public interface IBrokerService : IBrokerProducer, IBrokerConsumer
|
2024-11-13 03:32:30 +04:00
|
|
|
{
|
2024-12-04 01:57:10 +04:00
|
|
|
void ChangeBrokerIp(string ip);
|
2024-11-13 03:32:30 +04:00
|
|
|
}
|
|
|
|
}
|