AnyEvent-Radius

 view release on metacpan or  search on metacpan

lib/AnyEvent/Radius/Client.pm  view on Meta::CPAN

487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
Used to coordinate multiple clients instead of L<wait()>
 
Example:
 
    my $cv = AnyEvent->condvar;
    $client1->on_ready($cv);
    $client2->on_ready($cv);
    $client3->on_ready($cv);
    $cv->recv;
 
Will be blocked until all clients finish their queue.
 
=item destroy()
 
Destroy the internal socket handle. Must be called when object is no longer required.
When called from callback, it is recommended to wrap this call into AnyEvent::postpone { ... } block.
 
=back
 
=head1 SEE ALSO



( run in 0.344 second using v1.01-cache-2.11-cpan-26ccb49234f )