Yes, understood. But some APIs, similar to Javascript API I think, are still needed. THere are not yet, as there are not yet for Python as I see in the repo (and there is an open issue to provide them).
-- Michele Sciabarra [email protected] ----- Original message ----- From: Markus Thömmes <[email protected]> To: [email protected] Subject: Re: Promises (or equivalent) in Python and GoLang Date: Mon, 17 Sep 2018 10:07:15 +0200 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] >
