enqueueResponse method
Adds response
to the queue. These will be returned from
performRequest in the order they are added, otherwise it will throw
if the queue is empty.
Implementation
@override
void enqueueResponse(WorkResponse response) {
_responses.addLast(response);
}