python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
RxJava 3: How to use Futures with Observables/Singles
I'm relatively new to RxJava and I'm curious about how to use Futures with RxJava's Observable and/or Single. What I'm trying to make is a system to connect to a MongoDB database and load MongoDB coll...
Atlas
Votes: 0
Answers: 0
Using List of HashMap<String, dynamic> to populate ListView Builder Flutter
I am having a json response that looks like this below
[
{
"email": "kamchatka@mail.com",
"about": "Lorem ipsum dolor sit amet consectetur adipisic...
Emmanuel Njorodongo
Votes: 0
Answers: 1
How to bind lifetimes of Futures to fn arguments in Rust
Im trying to write a simple run_transaction function for the Rust MongoDB Driver
This function tries to execute a transaction through the mongo db client and retries the transaction if it encounters a...

Ramiro Aisen
Votes: 0
Answers: 1
Future catchError function doesn't catch error when its not chained immediately
consider this code:
EXAMPLE A:
Future<void> fakeCall() async {
await Future.delayed(const Duration(milliseconds: 300), () {
throw MyError('myException');
});
}
Future<void> fetch(...
vigdora
Votes: 0
Answers: 1