if (TinyGGcodeCommand.isOkErrorResponse(response)) {
// Pop the front of the active list.
String commandString = this.activeStringList.pop();
this.sentBufferSize -= commandString.length();
TinyGGcodeCommand command = new TinyGGcodeCommand(commandString);
command.setResponse(response);
dispatchListenerEvents(COMMAND_COMPLETE, this.commandCompleteListeners, command);
if (this.sendPaused == false) {
this.streamCommands();