public MockAdminClient(MockCluster cluster, string name) { this.cluster = cluster; Name = name; }
public MockAdminClient(MockCluster cluster, string name) { Name = name; }
public MockProducer(MockCluster cluster, string name) { this.cluster = cluster; Name = name; }
public MockKafkaSupplier(int defaultNumberPartitions = 1) { cluster = new MockCluster(defaultNumberPartitions); }
public MockConsumer(MockCluster cluster, string groupId, string clientId) { this.cluster = cluster; this.groupId = groupId; this.clientId = clientId; }
public MockKafkaSupplier(int defaultNumberPartitions = 1, long waitBeforeRebalanceMs = 0) { cluster = new MockCluster(defaultNumberPartitions, waitBeforeRebalanceMs); }