use of de.janrufmonitor.service.client.request.handler.CallerListRemoveHandler in project janrufmonitor by tbrandt77.
the class HttpCallerManager method removeCaller.
public void removeCaller(ICallerList callerList) {
if (!this.isConnected()) {
this.m_logger.warning("Client is not yet connected with the server.");
return;
}
IRequester r = null;
IHttpResponse resp = null;
r = this.getRequester(new CallerListRemoveHandler(callerList, this.getCallerManager()));
resp = r.request();
this.handleRequester(resp, r);
}
Aggregations