Closed zhebrak closed 8 years ago
obj.data = {} and obj.data are synchronous since there is no such thing as async descriptors with __aset__/__aget__ yet. In order to run raftos in a running loop we have to make them asynchronous.
obj.data = {}
obj.data
await obj.data.update({...}) current_data = await obj.data.value()
Implemented in 0.2
obj.data = {}
andobj.data
are synchronous since there is no such thing as async descriptors with __aset__/__aget__ yet. In order to run raftos in a running loop we have to make them asynchronous.