diff --git a/Tapeti.Flow/Default/FlowProvider.cs b/Tapeti.Flow/Default/FlowProvider.cs index 509ab64..2fa8a2d 100644 --- a/Tapeti.Flow/Default/FlowProvider.cs +++ b/Tapeti.Flow/Default/FlowProvider.cs @@ -362,12 +362,6 @@ namespace Tapeti.Flow.Default return BuildYieldPoint(continuation, false, noRequestsBehaviour); } - public IYieldPoint Yield(Func> continuation, FlowNoRequestsBehaviour noRequestsBehaviour = FlowNoRequestsBehaviour.Exception) - { - throw new NotImplementedException(); - } - - public IYieldPoint YieldSync(Func continuation, FlowNoRequestsBehaviour noRequestsBehaviour = FlowNoRequestsBehaviour.Exception) { return BuildYieldPoint(continuation, true, noRequestsBehaviour); diff --git a/Tapeti.Flow/IFlowProvider.cs b/Tapeti.Flow/IFlowProvider.cs index 3ac98de..b7e18df 100644 --- a/Tapeti.Flow/IFlowProvider.cs +++ b/Tapeti.Flow/IFlowProvider.cs @@ -230,19 +230,6 @@ namespace Tapeti.Flow /// How the Yield method should behave when no requests have been added to the parallel request builder. IYieldPoint Yield(Func> continuation, FlowNoRequestsBehaviour noRequestsBehaviour = FlowNoRequestsBehaviour.Exception); - /// There is no Sync overload with an IFlowParallelRequest parameter, as the AddRequest methods for that are - /// async, so you should always await them. - /// - /// Constructs an IYieldPoint to continue the flow when responses arrive. - /// The continuation method is called when all responses have arrived. - /// Response handlers and the continuation method are guaranteed thread-safe access to the - /// controller and can store state. - /// Used for asynchronous continuation methods. - /// - /// The converge continuation method to be called when all responses have been handled. - /// How the Yield method should behave when no requests have been added to the parallel request builder. - IYieldPoint Yield(Func> continuation, FlowNoRequestsBehaviour noRequestsBehaviour = FlowNoRequestsBehaviour.Exception); - /// /// Constructs an IYieldPoint to continue the flow when responses arrive. /// The continuation method is called when all responses have arrived.