}
private void consume(QueueEntry entry) {
try {
WebServiceResponse response = client.getResponse(entry.callSpec, entry.request, gson);
WebServiceCall call = new WebServiceCall(entry.callSpec, entry.request, response);
if (entry.responseCallback != null) {
entry.responseCallback.handleResponse(call);
}
} catch (WebServiceSystemException e) {
if (entry.responseCallback != null) {