*/
public void notify(final Response<?> response, final Acknowledge callback) throws Exception {
if (logger.isTraceEnabled()) logger.trace("notify("+response+")");
if (response == null)
throw new NullPointerException();
Acknowledge notify = new Acknowledge() {
@Override
public void onSuccess() {
signalQueueState();
callback.onSuccess();
}