-# $Id: Connect.pm,v 1.5 2006-10-25 13:36:02 mike Exp $
+# $Id: Connect.pm,v 1.6 2006-11-02 16:11:44 mike Exp $
# See ZOOM/IRSpy/Task/Search.pm for documentation
my $conn = $this->conn();
$conn->log("irspy_task", "connecting");
$conn->connect($conn->option("host"));
+ warn "no ZOOM-C level events queued by $this"
+ if $conn->is_idle();
$this->set_options();
}
-# $Id: Retrieve.pm,v 1.2 2006-10-25 17:16:14 mike Exp $
+# $Id: Retrieve.pm,v 1.3 2006-11-02 16:11:44 mike Exp $
package ZOOM::IRSpy::Task::Retrieve;
$this->irspy()->log("irspy_task", $conn->option("host"),
" retrieving record $index0 from $rs");
$rs->records($index0, 1, 0); # requests record
+ warn "no ZOOM-C level events queued by $this"
+ if $conn->is_idle();
$this->set_options();
}
-# $Id: Search.pm,v 1.5 2006-10-25 13:36:47 mike Exp $
+# $Id: Search.pm,v 1.6 2006-11-02 16:11:44 mike Exp $
package ZOOM::IRSpy::Task::Search;
$this->irspy()->log("irspy_task", $conn->option("host"),
" searching for '$query'");
$this->{rs} = $conn->search_pqf($query);
+ warn "no ZOOM-C level events queued by $this"
+ if $conn->is_idle();
$this->set_options();