355356357358359360361362363364365
synchronized ( pending_replies ) { for ( Iterator i = pending_replies.iterator(); i.hasNext(); ) { ReplyPlaceholder p = ( ReplyPlaceholder ) i.next(); p.retry(); } } // do the actual rebind delegate.rebind ( forward_reference );
361362363364365366367368369370371
8081828384858687888990
{ for ( Iterator<ReplyPlaceholder> i = replies.iterator(); i.hasNext(); ) { ReplyPlaceholder p = i.next(); p.retry(); } } } void addHolder (ReplyPlaceholder holder)