From 0821af5f21fdb083020ae2e3e79e4227ef59cd4f Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 30 Jul 2020 23:43:50 +0000 Subject: www: rework async_* to use method table Although the ->async_next method does not take $self as a receiver, but rather a PublicInbox::HTTP object, we may still retrieve it to be called with the HTTP object via UNIVERSAL->can. --- lib/PublicInbox/Mbox.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/PublicInbox/Mbox.pm') diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm index 115321c6..fc83a893 100644 --- a/lib/PublicInbox/Mbox.pm +++ b/lib/PublicInbox/Mbox.pm @@ -29,7 +29,7 @@ sub getline { } } -# called by PublicInbox::DS::write +# called by PublicInbox::DS::write after http->next_step sub async_next { my ($http) = @_; # PublicInbox::HTTP my $ctx = $http->{forward} or return; # client aborted @@ -40,7 +40,7 @@ sub async_next { warn "E: $@" if $@; } -sub async_eml { # ->{async_eml} for async_blob_cb +sub async_eml { # for async_blob_cb my ($ctx, $eml) = @_; my $smsg = delete $ctx->{smsg}; # next message @@ -87,7 +87,7 @@ sub emit_raw { my $smsg = $ctx->{smsg} = $over->next_by_mid(@$mip) or return; my $res_hdr = res_hdr($ctx, $smsg->{subject}); bless $ctx, __PACKAGE__; - $ctx->psgi_response(200, $res_hdr, \&async_next, \&async_eml); + $ctx->psgi_response(200, $res_hdr); } sub msg_hdr ($$;$) { -- cgit v1.2.3-24-ge0c7