Replies: 1 comment
-
Implemented, Issue #178. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ArcadeDB provides the powerful
db.async().command()
API to execute a command asynchronously. Unfortunately, the callback has onlyonOk(Resultset)
andonError()
but it would be nice having callbacks per single result of the result set. This makes easier integration with reactive frameworks like RxJava.The proposal is to enrich
AsyncResultsetCallback
by adding additional method to support both one time callonStart(resultset)
and per result withonNext(Result)
andonComplete()
when done.Beta Was this translation helpful? Give feedback.
All reactions