You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -278,9 +278,9 @@ Optionally, for ease of implementation, concrete class to derive from can be use
278
278
```fsharp
279
279
type ExecutorMiddleware(?compile, ?plan, ?execute) =
280
280
interface IExecutorMiddleware with
281
-
member __.CompileSchema = compile
282
-
member __.PlanOperation = plan
283
-
member __.ExecuteOperationAsync = execute
281
+
member _.CompileSchema = compile
282
+
member _.PlanOperation = plan
283
+
member _.ExecuteOperationAsync = execute
284
284
```
285
285
286
286
Each of the middleware functions act like an intercept function, with two parameters: the context of the phase, the function of the next middleware (or the actual phase itself, wich is the last to run), and the return value. Those functions can be passed as an argument to the constructor of the `Executor<'Root>` object:
0 commit comments