javamanager/javaregistry/legacy/server/inc/javaregserverscheduler.h
branchRCL_3
changeset 19 04becd199f91
equal deleted inserted replaced
16:f5050f1da672 19:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  javaregserverscheduler definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef JAVAREGSERVERSCHEDULER_H
       
    20 #define JAVAREGSERVERSCHEDULER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 namespace Java
       
    26 {
       
    27 namespace Manager
       
    28 {
       
    29 namespace Registry
       
    30 {
       
    31 
       
    32 // FORWARD DECLARATIONS
       
    33 class CJavaRegServer;
       
    34 
       
    35 // CLASS DECLARATION
       
    36 NONSHARABLE_CLASS(CJavaRegServerScheduler) :
       
    37         public CActiveScheduler
       
    38 {
       
    39 
       
    40 public:
       
    41 
       
    42     static TInt ThreadStart();
       
    43     static void CreateAndRunServerL();
       
    44     ~CJavaRegServerScheduler();
       
    45 
       
    46 private:
       
    47 
       
    48     CJavaRegServer* iServer;
       
    49 };
       
    50 
       
    51 }//namespace Registry
       
    52 }//namespace Manager
       
    53 }//namespace Java
       
    54 
       
    55 #endif // JAVAREGSERVERSCHEDULER_H
       
    56 
       
    57 // End of File
       
    58