core-async

dabrazhe 2019-12-10T15:17:03.299600Z

@hiredman Re Lambda handler: to return synchronous data I can use the Lambda handler to call the callback; the return value of the handler is going to be the callback's valuer. In this sense, if i wrap it in a go block, the return value of the handler is a many to many channel, which lambda is trying to render as a json : ) but it's not what i want. If I want /can return a promise, I don't need to use the callback, the handler if fine with a promise being the return value. It appears that in Clojurescript the only way to take from channels and return in the Labmda handler is from within the promise chain.