From 4ef60552e7fdc908b71ed74a7a484958a748cbfe Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 10 May 2006 16:01:04 +0000 Subject: [PATCH] Tweak sample program in synopsis to match current API. --- lib/ZOOM/Pod.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ZOOM/Pod.pm b/lib/ZOOM/Pod.pm index 1907d9b..a428619 100644 --- a/lib/ZOOM/Pod.pm +++ b/lib/ZOOM/Pod.pm @@ -1,4 +1,4 @@ -# $Id: Pod.pm,v 1.4 2006-05-10 15:51:10 mike Exp $ +# $Id: Pod.pm,v 1.5 2006-05-10 16:01:04 mike Exp $ package ZOOM::Pod; @@ -30,14 +30,14 @@ ZOOM::Pod - Perl extension for handling pods of concurrent ZOOM connections die "$pod->wait() failed with error $err" if $err; sub completed_search { - ($conn, $rs) = @_; + ($conn, undef, $rs) = @_; print $conn->option("host"), ": found ", $rs->size(), " records\n"; - $rs->record(0); # Queues a request for the record + $rs->records(0, 1, 0); # Queues a request for the record return 0; } sub got_record { - ($conn, $rs) = @_; + ($conn, undef, $rs) = @_; $rec = $rs->record(0); print $conn->option("host"), ": got $rec = '", $rec->render(), "'\n"; return 0; -- 1.7.10.4