Hi Michele, commenting only on Golang: While there are packages available that provide a similar API surface, they have very little adoption throughout the Golang community.
In general, the mechanism to achieve concurrent processing in Golang is goroutines (https://tour.golang.org/concurrency/1). The mechanism to communicate results in an asynchronous way is buffered channels ( https://tour.golang.org/concurrency/3). Any specific behavior you're after? Cheers, Markus Am Mo., 17. Sep. 2018 um 07:43 Uhr schrieb Michele Sciabarra < [email protected]>: > Hello, > > I checked the repositories for Python and GoLang clients, and I was > expecting to find some API to perform asynchronous computation, much like > Promises in Javascript. You know, in Javascript you so > ow.actions.invoke(...).then(...). > > What is the equivalent in Python, if any? Is there an equivalent in > GoLang? > > -- > Michele Sciabarra > [email protected] >
