Table of Contents

Class ConsumerInterceptor<K, V>

Namespace
Org.Apache.Kafka.Clients.Consumer
Assembly
MASES.KNet.dll

Listener for Kafka ConsumerRebalanceListener. Extends JVMBridgeListener, implements IConsumerInterceptor<K, V>

public class ConsumerInterceptor<K, V> : JVMBridgeListener, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IConsumerInterceptor<K, V>, IJVMBridgeBase, IJVMBridgeDefinition, IConfigurable, IAutoCloseable

Type Parameters

K
V
Inheritance
ConsumerInterceptor<K, V>
Implements
Derived
Inherited Members

Remarks

Dispose the object to avoid a resource leak, the object contains a reference to the corresponding JVM object

Constructors

ConsumerInterceptor()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public ConsumerInterceptor()

ConsumerInterceptor(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public ConsumerInterceptor(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

OnClose

public Action OnClose { get; set; }

Property Value

Action

Remarks

If OnClose has a value it takes precedence over corresponding class method

OnConfigure

public Action<Map<String, object>> OnConfigure { get; set; }

Property Value

Action<Map<String, object>>

Remarks

If OnConfigure has a value it takes precedence over corresponding class method

OnOnCommit

public Action<Map<TopicPartition, OffsetAndMetadata>> OnOnCommit { get; set; }

Property Value

Action<Map<TopicPartition, OffsetAndMetadata>>

Remarks

If OnOnCommit has a value it takes precedence over corresponding class method

OnOnConsume

public Func<ConsumerRecords<K, V>, ConsumerRecords<K, V>> OnOnConsume { get; set; }

Property Value

Func<ConsumerRecords<K, V>, ConsumerRecords<K, V>>

Remarks

If OnOnConsume has a value it takes precedence over corresponding class method

Methods

Close()

public virtual void Close()

Configure(Map<String, object>)

public virtual void Configure(Map<String, object> arg0)

Parameters

arg0 Map<String, object>

Map

Configure(Map<string, Object>)

Configure this class with the given key-value pairs

public virtual void Configure(Map<string, Object> configs)

Parameters

configs Map<string, Object>

The configuration Map

InitializeHandlers()

Handlers initializer for ConsumerInterceptor

protected virtual void InitializeHandlers()

OnCommit(Map<TopicPartition, OffsetAndMetadata>)

public virtual void OnCommit(Map<TopicPartition, OffsetAndMetadata> arg0)

Parameters

arg0 Map<TopicPartition, OffsetAndMetadata>

Map

OnConsume(ConsumerRecords<K, V>)

public virtual ConsumerRecords<K, V> OnConsume(ConsumerRecords<K, V> arg0)

Parameters

arg0 ConsumerRecords<K, V>

ConsumerRecords

Returns

ConsumerRecords<K, V>

ConsumerRecords