yangxiaodong преди 7 години
родител
ревизия
4fc6a4d195
променени са 1 файла, в които са добавени 45 реда и са изтрити 0 реда
  1. +45
    -0
      src/Cap.Consistency/Internal/MethodMatcherCache.cs

+ 45
- 0
src/Cap.Consistency/Internal/MethodMatcherCache.cs Целия файл

@@ -0,0 +1,45 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Text;
using Cap.Consistency.Abstractions;
using Cap.Consistency.Infrastructure;
using Cap.Consistency.Routing;

namespace Cap.Consistency.Internal
{
public class MethodMatcherCache
{
private readonly IConsumerExcutorSelector _selector;

public MethodMatcherCache(IConsumerExcutorSelector selector) {
_selector = selector;
}

public ConcurrentDictionary<string, ConsumerExecutorDescriptor> GetCandidatesMethods(TopicRouteContext routeContext) {

if (Entries == null) {

var executorCollection = _selector.SelectCandidates(routeContext);

foreach (var item in executorCollection) {

Entries.GetOrAdd(item.Topic.Name, item);
}
}
return Entries;
}

public ConsumerExecutorDescriptor GetTopicExector(string topicName) {

if (Entries == null) {
throw new ArgumentNullException(nameof(Entries));
}

return Entries[topicName];
}

public ConcurrentDictionary<string, ConsumerExecutorDescriptor> Entries { get; } =
new ConcurrentDictionary<string, ConsumerExecutorDescriptor>();
}
}

Зареждане…
Отказ
Запис