DataProcessor send method does not always return Promise (BUG)

Initial conditions DataProcessor:

  1. autoupdate: false
  2. url is set to proxy with save method (not saveAll)
...
autoupdate: false,
url: {
  $proxy: true,
  save(dc, update, dp) { ... }
}
...

Calling method dp.send returns null.

Of course the client sends as many requests as there are records changed (CRUD), but these requests should be controlled by e.g. Promise.all at the end.

In my opinion this is a bug and the _sendData DataProcessor function should be fixed.

Hello AndS,

Your proposal definitely makes sense and we will consider it.
Save requests are always processed individually, but since we have a case where several (possibly many) requests can be sent at once, it makes sense to process this.
But at the moment saveAll remains the only ready-made way to track the entire stack of requests.
In addition, it can be considered as more optimal solution.
Thank you very much for your proposal.