diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_count_server.html --- a/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_count_server.html Tue Mar 30 11:56:28 2010 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,254 +0,0 @@ - -
-Public Member Functions | |
CSession2 * | NewSessionL (const TVersion &aVersion, const RMessage2 &aMessage) const |
CCountServer (CActive::TPriority aActiveObjectPriority) | |
void | ConstructL () |
CObjectCon * | NewContainerL () |
void | RemoveContainer (CObjectCon *aCon) |
~CCountServer () | |
Static Public Member Functions | |
static CCountServer * | NewL (CActive::TPriority aActiveObjectPriority) |
static TInt | ThreadFunction (TAny *aStarted) |
static void | PanicServer (TCountServPanic aPanic) |
Definition at line 48 of file ComplexServer.h.
-CCountServer::CCountServer | -( | -CActive::TPriority | -aActiveObjectPriority | -) | -- |
-Constructor takes the server priority value.
-The server is an active object, and the priority value is the priority of this active object.
-It passes the priority value to the base class in the Ctor list. By default, the session is not sharable, which is what we want here so no second parameter is passed to the CServer2 constructor. -
Definition at line 83 of file ComplexServerCCountServer.cpp.
- -CCountServer::~CCountServer | -( | -- | ) | -- |
-Desctructor - deletes the object container index. -
Definition at line 101 of file ComplexServerCCountServer.cpp.
- --
CSession2 * CCountServer::NewSessionL | -( | -const TVersion & | -aVersion, | -|
- | - | const RMessage2 & | -aMessage | - |
- | ) | -const | -
-Creates a new session with the server. -
Definition at line 110 of file ComplexServerCCountServer.cpp.
- -CCountServer * CCountServer::NewL | -( | -CActive::TPriority | -aActiveObjectPriority | -) | - [static] |
-
-First phase construction -
Definition at line 41 of file ComplexServerCCountServer.cpp.
- -TInt CCountServer::ThreadFunction | -( | -TAny * | -aStarted | -) | - [static] |
-
-The count server thread function that initialises the server.
aStarted | -aStarted |
Definition at line 30 of file ComplexServer.cpp.
- -void CCountServer::PanicServer | -( | -TCountServPanic | -aPanic | -) | - [static] |
-
-A utility function to panic the server. -
Definition at line 31 of file ComplexServerCCountServer.cpp.
- -void CCountServer::ConstructL | -( | -- | ) | -- |
-Second-phase constructor - creates the object container index. -
Definition at line 92 of file ComplexServerCCountServer.cpp.
- -CObjectCon * CCountServer::NewContainerL | -( | -- | ) | -- |
-Creates and returns a new object container using the server's object container index.
-This is a service that is used by a session. -
Definition at line 57 of file ComplexServerCCountServer.cpp.
- -void CCountServer::RemoveContainer | -( | -CObjectCon * | -aCon | -) | -- |
-Removes the object container using the server's object container index. This is a service that is used by a session. -
Definition at line 67 of file ComplexServerCCountServer.cpp.
- --