eShopOnContainers/src/BuildingBlocks/EventBus/EventBusKafka/DefaultKafkaPersistentConnection.cs

10 lines
190 B
C#
Raw Normal View History

2023-02-13 11:23:51 +01:00
namespace EventBusKafka;
// Abstracts how to connect to Kafka client
2023-02-13 11:23:51 +01:00
public class DefaultKafkaPersistentConnection
: IKafkaPersistentConnection
2023-02-13 11:23:51 +01:00
{
public void Dispose()
{
}
2023-02-13 11:23:51 +01:00
}