Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <mmfcontroller.h>
Link against: mmfcontrollerframework.lib

Class CMMFAddDataSourceSinkAsync

class CMMFAddDataSourceSinkAsync : public CActive;

Description

Active object utility class that can be used to add a data source or data sink to a controller plugin asynchronously. Once the command has been completed, the caller will be notified via the MMMFAddDataSourceSinkAsyncObserver interface.

Derivation

Members

Defined in CMMFAddDataSourceSinkAsync:

Inherited from CActive:

Inherited from CBase:


Construction and destruction


NewL(MMMFAddDataSourceSinkAsyncObserver &)

IMPORT_C static CMMFAddDataSourceSinkAsync* NewL(MMMFAddDataSourceSinkAsyncObserver &aObs);

Description

Constructs a CMMFAddDataSourceSinkAsync object.

Parameters

MMMFAddDataSourceSinkAsyncObserver &aObs

A reference to the observer of the active object. The observer will be notified when the AddDataSource/Sink command is complete.

Return value

CMMFAddDataSourceSinkAsync *

A pointer to the new object.

Leave codes

This

method can leave with one of the standard system-wide error codes.

[Top]


Member functions


AddDataSource(RMMFController &,TUid,const TDesC8 &)

IMPORT_C void AddDataSource(RMMFController &aController, TUid aSourceUid, const TDesC8 &aSourceInitData);

Description

Add a data source to the controller. The caller will be signalled on completion via the MMMFAddDataSourceSinkAsyncObserver interface.

Only one method call may be outstanding on this object at any one time.

Parameters

RMMFController &aController

A reference to the client controller interface class.

TUid aSourceUid

The uid of the data source to be added. For more information, see the documentation for the data source you wish to add.

const TDesC8 &aSourceInitData

Data used to initialise the data source. The exact contents of this data are dependent on the type of data source. For more information, see the documentation for the data source you wish to add.


AddFileHandleDataSource(RMMFController &,const RFile &)

IMPORT_C void AddFileHandleDataSource(RMMFController &aController, const RFile &aFile);

Description

Parameters

RMMFController &aController

const RFile &aFile


AddDataSink(RMMFController &,TUid,const TDesC8 &)

IMPORT_C void AddDataSink(RMMFController &aController, TUid aSinkUid, const TDesC8 &aSinkInitData);

Description

Add a data sink to the controller. The caller will be signalled on completion via the MMMFAddDataSourceSinkAsyncObserver interface.

Only one method call may be outstanding on this object at any one time.

Parameters

RMMFController &aController

A reference to the client controller interface class.

TUid aSinkUid

The uid of the data sink to be added. For more information, see the documentation for the data sink you wish to add.

const TDesC8 &aSinkInitData

Data used to initialise the data sink. The exact contents of this data are dependent on the type of data sink. For more information, see the documentation for the data sink you wish to add.


AddFileHandleDataSink(RMMFController &,const RFile &)

IMPORT_C void AddFileHandleDataSink(RMMFController &aController, const RFile &aFile);

Description

Parameters

RMMFController &aController

const RFile &aFile


RunL()

private: virtual void RunL();

Description

Handles an active object's request completion event.

A derived class must provide an implementation to handle the completed request. If appropriate, it may issue another request.

The function is called by the active scheduler when a request completion event occurs, i.e. after the active scheduler's WaitForAnyRequest() function completes.

Before calling this active object's CMMFAddDataSourceSinkAsync::RunL() function, the active scheduler has:

1. decided that this is the highest priority active object with a completed request

2. marked this active object's request as complete (i.e. the request is no longer outstanding)

CMMFAddDataSourceSinkAsync::RunL() runs under a trap harness in the active scheduler. If it leaves, then the active scheduler calls CActive::RunError(TInt) to handle the leave.

Note that once the active scheduler's Start() function has been called, all user code is run under one of the program's active object's CMMFAddDataSourceSinkAsync::RunL() or CActive::RunError(TInt) functions.

See also:


DoCancel()

private: virtual void DoCancel();

Description

Implements cancellation of an outstanding request.

This function is called as part of the active object's CActive::Cancel().

It must call the appropriate cancel function offered by the active object's asynchronous service provider. The asynchronous service provider's cancel is expected to act immediately.

CMMFAddDataSourceSinkAsync::DoCancel() must not wait for event completion; this is handled by CActive::Cancel().

See also: