Appccelerate.MappingEventBroker.Conventions.FuncTopicConvention.FuncTopicConvention C# (CSharp) Method

FuncTopicConvention() public method

Initializes a new instance of the FuncTopicConvention class.
public FuncTopicConvention ( bool>.Func candidateSelector, string>.Func topicMapper ) : System
candidateSelector bool>.Func The candidate selector.
topicMapper string>.Func The topic mapper.
return System
        public FuncTopicConvention(Func<IEventTopicInfo, bool> candidateSelector, Func<string, string> topicMapper)
        {
            this.candidateSelector = candidateSelector;
            this.topicMapper = topicMapper;
        }

Same methods

FuncTopicConvention::FuncTopicConvention ( string>.Func topicMapper ) : System