The following code gives an error

Not all code paths return a value in lambda expression of type 'System.Func'.

It highlights line =>. Not sure why?

    var ui = new DataflowBlockOptions();
    ui.TaskScheduler = TaskScheduler.Current;
    ui.BoundedCapacity = 1;
    ui.MaxMessagesPerTask = 1;

    ActionBlock<string> tradeSignalLog = new ActionBlock<string>(line => 
        {
            Console.WriteLine(line);
        }, ui);
link|improve this question

29% accept rate
This really has nothing to do with the TPL - tidying tags/title accordingly – Marc Gravell Dec 6 '11 at 6:47
2  
@MarcGravell: ActionBlock is part of TPL version 4.5 – Fischermaen Dec 6 '11 at 6:54
@Fischermaen odd, I couldn't see it in a search. I'll look a second time. – Marc Gravell Dec 6 '11 at 6:54
Updated answer accordingly – Marc Gravell Dec 6 '11 at 6:58
If you don't think my answer helped, then fine; I've removed it. However, that extra parameter is present on both overloads as far as I can see. – Marc Gravell Dec 6 '11 at 14:43
show 1 more comment
feedback

2 Answers

The original error is that the overload resolution failed. Then the C# compiler has some heuristics that try to figure out why the overload resolution failed, and in this case those heuristics didn't tell you the "correct" cause.

First look at the available two parameter overloads:

public ActionBlock(Action<TInput> f, ExecutionDataflowBlockOptions o);
public ActionBlock(Func<TInput, Task> f, ExecutionDataflowBlockOptions o);

The second parameter is ExecutionDataflowBlockOptions in both cases. But you supply a DataflowBlockOptions which is a base class of ExecutionDataflowBlockOptions. Since base classes are not implicitly convertible to derived classes the overload resolution fails. Once you create the correct kind of options, your code will work.

A related answer of Eric Lippert on compiler-error heuristics when overload resolution fails: Passing lambda functions as named parameters in C#

link|improve this answer
Thanks this works. – Ivan Dec 11 '11 at 2:55
feedback

Try creating,

Action<string> action = line => Console.WriteLine(line);
ActionBlock<string> tradeSignalLog = new ActionBlock<string>(action, ui);

See if that doesn't fix your problem. It seems the compiler is interpreting your code and expecting a Func<> as per: http://msdn.microsoft.com/en-us/library/hh194684(v=vs.110).aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.