소스 검색

Add Kafka options to support custom header to add offset and partition into CapHeader. #374

master
Savorboard 5 년 전
부모
커밋
e15f518532
2개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      src/DotNetCore.CAP.Kafka/CAP.KafkaOptions.cs
  2. +9
    -0
      src/DotNetCore.CAP.Kafka/KafkaConsumerClient.cs

+ 6
- 0
src/DotNetCore.CAP.Kafka/CAP.KafkaOptions.cs 파일 보기

@@ -5,6 +5,7 @@ using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using Confluent.Kafka;

// ReSharper disable once CheckNamespace
namespace DotNetCore.CAP
@@ -43,6 +44,11 @@ namespace DotNetCore.CAP
/// </summary>
public string Servers { get; set; }

/// <summary>
/// If you need to get offset and partition and so on.., you can use this function to write additional header into <see cref="CapHeader"/>
/// </summary>
public Func<ConsumeResult<string, byte[]>, List<KeyValuePair<string, string>>> CustomHeaders { get; set; }

internal IEnumerable<KeyValuePair<string, string>> AsKafkaConfig()
{
if (_kafkaConfig == null)


+ 9
- 0
src/DotNetCore.CAP.Kafka/KafkaConsumerClient.cs 파일 보기

@@ -62,6 +62,15 @@ namespace DotNetCore.CAP.Kafka
}
headers.Add(Messages.Headers.Group, _groupId);

if (_kafkaOptions.CustomHeaders != null)
{
var customHeaders = _kafkaOptions.CustomHeaders(consumerResult);
foreach (var customHeader in customHeaders)
{
headers.Add(customHeader.Key, customHeader.Value);
}
}

var message = new TransportMessage(headers, consumerResult.Value);

OnMessageReceived?.Invoke(consumerResult, message);


불러오는 중...
취소
저장