equal
deleted
inserted
replaced
|
1 // Copyright (c) 2005-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 /** |
|
17 @file |
|
18 @internalTechnology |
|
19 @released |
|
20 */ |
|
21 |
|
22 #ifndef LINKMUXNOTIFIER_H |
|
23 #define LINKMUXNOTIFIER_H |
|
24 |
|
25 #include <e32base.h> |
|
26 |
|
27 const TInt KLinkMuxNotifierUid = 0x102736E7; |
|
28 |
|
29 /** |
|
30 Interface for a class that needs to notify an opportunity to |
|
31 send an item waiting on an HCI queue |
|
32 */ |
|
33 class MLinkMuxNotifier |
|
34 { |
|
35 public: |
|
36 /** |
|
37 Function call to indicate that the implementor should attempt to send HCI queue |
|
38 items from the HCI queues (in an appropriate manner/order). |
|
39 */ |
|
40 virtual void TryToSend() = 0; // request to send on certain channels |
|
41 }; |
|
42 #endif //LINKMUXNOTIFIER_H |