Show / Hide Table of Contents

Interface IKafkaMessageConsumerFactory

Namespace: Volo.Abp.Kafka
Assembly: Volo.Abp.Kafka.dll
Syntax
public interface IKafkaMessageConsumerFactory

Methods

Create(String, String, String)

Creates a new IKafkaMessageConsumer. Avoid to create too many consumers since they are not disposed until end of the application.

Declaration
IKafkaMessageConsumer Create(string topicName, string groupId, string connectionName = null)
Parameters
Type Name Description
System.String topicName
System.String groupId
System.String connectionName
Returns
Type Description
IKafkaMessageConsumer

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft