summaryrefslogtreecommitdiffstats
path: root/netwerk/base/nsIChannelWithDivertableParentListener.idl
blob: 1fb52931fd9bf411f97039ab421001b5a4efd554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsISupports.idl"

%{C++
namespace mozilla {
namespace net {
class ADivertableParentChannel;
}
}
%}

[ptr] native ADivertableParentChannelPtr(mozilla::net::ADivertableParentChannel);

/** When we are diverting messages from the child to the parent. The
 *  nsHttpChannel and nsFtpChannel must know that there is a ChannelParent to
 *  be able to suspend message delivery if the channel is suspended.
 */
[uuid(c073d79f-2503-4dff-ba87-d3071f8b433b)]
interface nsIChannelWithDivertableParentListener : nsISupports
{
  /**
   * Informs nsHttpChannel or nsFtpChannel that a ParentChannel starts
   * diverting messages. During this time all suspend/resume calls to the
   * channel must also suspend the ParentChannel by calling
   * SuspendMessageDiversion/ResumeMessageDiversion.
   */
  void MessageDiversionStarted(in ADivertableParentChannelPtr aParentChannel);

  /**
   * The message diversion has finished the calls to
   * SuspendMessageDiversion/ResumeMessageDiversion are not necessary anymore.
   */
  void MessageDiversionStop();

  /**
   * Internal versions of Suspend/Resume that suspend (or resume) the channel
   * but do not suspend the ParentChannel's IPDL message queue.
   */
  void SuspendInternal();
  void ResumeInternal();
};