/** Notify the listener of a pending Request. */
 protected void requestNotify() {
   RequestListener l = listener;
   if (l != null) {
     l.invocationRequestNotify(this);
   }
 }