|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU Lesser General Public License as published by |
|
7 * the Free Software Foundation, version 2.1 of the License. |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, |
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 * GNU Lesser General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU Lesser General Public License |
|
15 * along with this program. If not, |
|
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
|
17 * |
|
18 * Description: |
|
19 * |
|
20 */ |
|
21 |
|
22 #ifndef RESPONSEHANDLEREX_H_ |
|
23 #define RESPONSEHANDLEREX_H_ |
|
24 |
|
25 #include <remconcoreapitarget.h> |
|
26 |
|
27 #include <remconcoreapi.h> |
|
28 #include <remconinterfaceselector.h> |
|
29 #include <remconcallhandlingtarget.h> |
|
30 #include <remconcallhandlingtargetobserver.h> |
|
31 |
|
32 NONSHARABLE_CLASS(CResponseHandlerEx) : public CActive |
|
33 { |
|
34 public: |
|
35 |
|
36 /** |
|
37 * Two-phased constructor. |
|
38 * |
|
39 * @since 3.0 |
|
40 * @param aRemConCoreApiTarget RemCon core target object. |
|
41 * @return Pointer to newly created object. |
|
42 */ |
|
43 static CResponseHandlerEx* NewL( CRemConCallHandlingTarget& aRemConCallHandlingTarget ); |
|
44 |
|
45 /** |
|
46 * Destructor. |
|
47 */ |
|
48 virtual ~CResponseHandlerEx(); |
|
49 |
|
50 /** |
|
51 * Send the any key response back to Remcon server |
|
52 * |
|
53 * @since 3.0 |
|
54 * @param aOperationId RemCon operation Id. |
|
55 */ |
|
56 void CompleteAnyKey(int id ); |
|
57 |
|
58 private: |
|
59 |
|
60 /** |
|
61 * C++ default constructor. |
|
62 */ |
|
63 CResponseHandlerEx( CRemConCallHandlingTarget& aRemConCallHandlingTarget ); |
|
64 |
|
65 // from base class CActive |
|
66 |
|
67 /** |
|
68 * From CActive |
|
69 * Handles an active object's request completion event. |
|
70 */ |
|
71 void RunL(); |
|
72 |
|
73 /** |
|
74 * From CActive |
|
75 * Implements cancellation of an outstanding request. |
|
76 */ |
|
77 void DoCancel(); |
|
78 |
|
79 private: // Data |
|
80 |
|
81 // Response array. |
|
82 RArray<int> iResponseArray; // Own |
|
83 CRemConCallHandlingTarget& iRemConCallHandlingTarget; // Not own |
|
84 }; |
|
85 |
|
86 #endif /* RESPONSEHANDLEREX_H__H_ */ |