void pickResponses(Iterator<ResponseContainer> responseIterator) throws TraCIException {
ResponseContainer respc = responseIterator.next();
StatusResponse statusResp = respc.getStatus();
Utils.checkStatusResponse(statusResp, commandID);
Command resp = respc.getResponse();
Utils.checkByte(resp.content(), varID);
Utils.checkObjectID(resp.content(), objectID);
V value = readValue(resp);
setDone(value);
}