The client may wish to know when the relativelty fast process of creating the
events is over, and the relatively slow process of validating them and running
their reactors/cleanup/etc is about to begin.
git-svn-id: svn://svn.open-ils.org/ILS/trunk@18089
dcc99617-32d9-48b4-a31d-
7c20da2025e4
$e->editor->disconnect;
}
+ # Could report on how the "found" events were grouped, but who's going to
+ # consume that information?
+ for my $key (keys %groups) {
+ if (@{ $groups{$key} }) {
+ $client->respond({"status" => "found"});
+ last;
+ }
+ }
+
return \%groups;
}