Philipp Theyssen 30eb3a075e Add further details to Kafka eventbus skeleton.
So far only copied details from other eventbus implementations.
Key next steps are to implement a persistent connection abstraction (class)
for the Kafka eventbus and the publish and subscribe functions. For this
we need knowledge about how Kafka works, for example how one publishes
events topics etc.
2023-02-13 12:42:56 +01:00

6 lines
92 B
C#

namespace EventBusKafka;
public interface IKafkaPersistentConnection : IDisposable
{
}