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.
6 lines
92 B
C#
6 lines
92 B
C#
namespace EventBusKafka;
|
|
|
|
public interface IKafkaPersistentConnection : IDisposable
|
|
{
|
|
|
|
} |