author | ivan.fildichev@opencode.com |
Thu, 18 Nov 2010 15:42:16 +0200 | |
branch | opencode |
changeset 88 | 5e27cc612ac7 |
parent 32 | 58332560b319 |
permissions | -rw-r--r-- |
24 | 1 |
// Copyright (c) 2008-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 |
||
32
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
16 |
/** |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
17 |
@file |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
18 |
@internalAll |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
19 |
*/ |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
20 |
|
24 | 21 |
#ifndef MDISPATCHERCALLBACK_H_ |
22 |
#define MDISPATCHERCALLBACK_H_ |
|
23 |
||
24 |
#include "requestqueueoneshot.h" |
|
25 |
||
26 |
||
27 |
class MDispatcherCallback |
|
28 |
{ |
|
29 |
public: |
|
30 |
||
31 |
/** |
|
32 |
* This function forms part of the handling of IPCs which are completed |
|
33 |
* synchronously by the Licensee LTSY but needs completion asynchronously |
|
34 |
* up to the Common TSY. It is used by the CRequestQueueOneShot object |
|
35 |
* to forward the request back to the correct dispatcher along with the |
|
36 |
* completion data so that the request data can then be unpacked and cleaned |
|
37 |
* up properly on return to the Common TSY. |
|
38 |
* |
|
39 |
* @param aIpcDataPackage Encapsulates the request to complete. |
|
40 |
*/ |
|
41 |
virtual void CallbackSync(CRequestQueueOneShot::TIpcDataPackage& aIpcDataPackage) = 0; |
|
42 |
||
43 |
}; // class MDispatcherCallback |
|
44 |
||
45 |
#endif /*MDISPATCHERCALLBACK_H_*/ |