Remove/disable DataProcessor from Scheduler

Hi, I’m having difficulties implementing two differenct data processors for the same scheduler object. The problem is I have two view for the scheduler, one view has a specific data processor that updates one table in the database, the other view has a second dataprocessor that updates another table in the same database.

So is it possible to disable or delete a dataprocessor from the Scheduler and set another one? Because if I init two dataprocessors on the same scheduler, both of them will auto-update on both tables and that’s not what I want. I tried setting .setUpdateMode(“off”) but it did not work as expected, because when I set it back to .setUpdateMode(“cell”), both dataprocessors stop sending data to the server.

Any help would be appreciated,
Ryan

So is it possible to disable or delete a dataprocessor from the Scheduler and set another one?
Nope, after initialization they are linked by bunch of event handlers, and there is no easy way to separate them.

How about using a single dataprocessor, but change destination uri?
You can use

dp.serverProcessor = “/some/save/url”;