Closed Bug 1281744 Opened 8 years ago Closed 8 years ago

Allow nsHttpChannel listeners to delay OnStopRequest

Categories

(Core :: Networking, defect)

defect
Not set
normal

Tracking

()

RESOLVED INVALID

People

(Reporter: franziskus, Unassigned)

Details

(Whiteboard: [necko-next])

While trying to delay an OnStopRequest propagation I found out that this is not possible.

Scenario:
* Inject a listener in nsHttpChannel
* Return in the listeners OnStopRequest without calling any further listener (i.e. mNextListener-> ...)

I would expect now that I can call mNextListener-> in my listener at a later point in time to finish off the request.
Unfortunately that's not possible because nsHttpChannel cleans up after calling mListener->OnStopRequest [1] such that any my listener is not usable anymore.

>    CloseCacheEntry(!contentComplete);
> 
>    if (mOfflineCacheEntry)
>        CloseOfflineCacheEntry();
> 
>    if (mLoadGroup)
>        mLoadGroup->RemoveRequest(this, nullptr, status);
> 
>    // We don't need this info anymore
>    CleanRedirectCacheChainIfNecessary();
> 
>    ReleaseListeners();

[1] https://dxr.mozilla.org/mozilla-central/rev/51377a64158941f89ed73f388ae437cfa494c030/netwerk/protocol/http/nsHttpChannel.cpp#6412
Whiteboard: [necko-next]
There is no need to do this.  Correct use of mListener chaining will work well.
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → INVALID
You need to log in before you can comment on or make changes to this bug.