@Override
 public final void close(Throwable t) {
   log.error("Exception while closing HTTP adapter", t);
   if (actor != null) actor.die(t);
 }
 @Override
 public final void close() {
   if (actor != null) actor.die(null);
   actorContext = null;
 }