applayerpluginsandutils/httpprotocolplugins/WspProtocolHandler/MWspCOMethodObserver.h
equal
deleted
inserted
replaced
|
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __MWSPCOMETHODOBSERVER_H__ |
|
17 #define __MWSPCOMETHODOBSERVER_H__ |
|
18 |
|
19 // System includes |
|
20 #include <e32std.h> |
|
21 #include <http/framework/mrxdataobserver.h> |
|
22 |
|
23 // Forward declarations |
|
24 class CWspCOTransaction; |
|
25 |
|
26 // @todo docing |
|
27 |
|
28 //##ModelId=3C4C41AE01BD |
|
29 class MWspCOMethodObserver : public MRxDataObserver |
|
30 { |
|
31 public: // Methods |
|
32 |
|
33 /** @fn HandleMethodAbort(CWspCOTransaction& aTransaction) =0 |
|
34 |
|
35 @since 7.0 |
|
36 @param aTransaction A reference to the aborted method transaction. |
|
37 @post The aborted method transaction has been dealt with. |
|
38 */ |
|
39 //##ModelId=3C4C41AE01D2 |
|
40 virtual void HandleMethodAbort(CWspCOTransaction& aTransaction) =0; |
|
41 |
|
42 /** @fn NotifyPendingCompletingMethod() =0 |
|
43 |
|
44 @since 7.0 |
|
45 */ |
|
46 virtual void NotifyPendingCompletingMethod() =0; |
|
47 |
|
48 /** @fn NotifyMethodComplete() =0 |
|
49 |
|
50 @since 7.0 |
|
51 */ |
|
52 virtual void NotifyMethodComplete() =0; |
|
53 |
|
54 }; |
|
55 |
|
56 #endif // __MWSPCOMETHODOBSERVER_H__ |