Use ZEND only for callbacks, rather than RECV_*
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Search / Title.pm
index 3bc6201..86f5aec 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Title.pm,v 1.6 2006-10-12 14:38:27 mike Exp $
+# $Id: Title.pm,v 1.10 2007-02-23 15:03:44 mike Exp $
 
 # See the "Main" test package for documentation
 
@@ -11,13 +11,15 @@ use warnings;
 use ZOOM::IRSpy::Test;
 our @ISA = qw(ZOOM::IRSpy::Test);
 
+use ZOOM::IRSpy::Utils qw(isodate);
+
 
 sub start {
     my $class = shift();
     my($conn) = @_;
 
-    $conn->irspy_search_pqf('@attr 1=4 mineral', undef,
-                           ZOOM::Event::RECV_SEARCH, \&found,
+    $conn->irspy_search_pqf('@attr 1=4 mineral', undef, {},
+                           ZOOM::Event::ZEND, \&found,
                            "exception", \&error);
 }
 
@@ -39,7 +41,7 @@ sub found {
 sub error {
     my($conn, $task, $__UNUSED_udata, $exception) = @_;
 
-    $conn->log("irspy_test", "error: $exception");
+    $conn->log("irspy_test", "title search had error: $exception");
     my $rec = $conn->record();
     $rec->append_entry("irspy:status", "<irspy:search_title ok='0'>" .
                       isodate(time()) . "</irspy:search_title>");