Follow up question, I noticed that the function si...
# general
b
Follow up question, I noticed that the function signature for
endpoint.get
takes multiple functions, how does that work, do they all run in parallel or something? https://github.com/pulumi/pulumi-cloud/blob/082b33b1a40c62e87df87dffd345ffe9c3874105/aws/api.ts#L101
b
@white-balloon-205 can correct me if I am wrong, but I think this basically a way of doing middleware, so the functions run in order, not in parallel, and if one handler stops the future ones are not called.
b
Oh right, that's cool