Open tpham3783 opened 2 years ago
I traced down the delete method, and it looks like it is an asynchronous call to grpc:
Future<void> deleteDocument(String path) => _client
.deleteDocument(DeleteDocumentRequest()..name = path)
.catchError(_handleError);
I am not sure how to make that call synchronous, given it is a grpc api.
Hi,
I am observing an issue with synchronous access between a delete and listen.
take this code for example:
Would someone please advise why this would happen and how to fix it?