For example, I have a workflow for logging, and I want to use async in the logging workflow. How to call logging's bind
in async workflow?
log {
async {
let! a = .... // Need to do logging here.
let! b = .... // Need to do async here
Edit: I heard that it's a good idea to use workflow to replace AOP for cross cutting concerns purpose in F#. I'm not sure how to handle the embedding issues. Or it's not a good idea to use workflow for it?