KafkaNet.BrokerRouter.GetAllTopicMetadataFromLocalCache C# (CSharp) Method

GetAllTopicMetadataFromLocalCache() public method

Returns Topic metadata for each topic.
The topic metadata will by default check the cache. To force querying the metadata from the server use RefreshAllTopicMetadata
public GetAllTopicMetadataFromLocalCache ( ) : List
return List
        public List<Topic> GetAllTopicMetadataFromLocalCache()
        {
            return _topicIndex.Values.Select(t => t.Item1).ToList();
        }