Description
When using the DCP client and applying back-pressure via the event handler, the SDK is intended to continue processing incoming packets as expected with dcp ack being used to apply back-pressure to the server.
Unfortunately the current implementation does not actually do this, it starts up threads for handling DCP packets, correctly hands off packets to those threads, but the queue between it is 1:1 which means that the threads block each-other anyways. This leads to a case where config updates and other requests (such as further OpenStream messages) can be blocked waiting behind DCP events which are intentionally being held back by the application for back-pressure reasons.