Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <IMPCMTM.H>
Link against: imcm.lib

Class CImImap4GetMail

class CImImap4GetMail : public CMsvOperation;

Description

Encapsulates an operation to copy, move, and populate (i.e. download the full message body) IMAP4 emails from the remote inbox to any local folder.

Note that the same operations are available by calling CImap4ClientMtm::InvokeAsyncFunctionL(TInt,const CMsvEntrySelection &,TDes8 &,TRequestStatus &) with a suitable command.

Derivation

Members

Defined in CImImap4GetMail:

Inherited from CActive:

Inherited from CBase:

Inherited from CMsvOperation:


Member functions


GetMailL(TInt,CImap4ClientMtm &,const CMsvEntrySelection &,TDes8 &,TRequestStatus &)

IMPORT_C CMsvOperation* GetMailL(TInt aFunctionId, CImap4ClientMtm &aImap4ClientMtm, const CMsvEntrySelection &aMsvEntrySelection, TDes8 &aImap4GetMailInfo, TRequestStatus &aObserverRequestStatus);

Description

Creates and begins a new IMAP4 get mail operation.

Note that the function should be, though is not, marked as static. The workaround is to call the function using a NULL CImImap4GetMail pointer:

CImImap4GetMail* gm = NULL;
CMsvOperation* gmOp = gm->GetMailL(id, mtm, sel, info, status);

Alternatively, instead of using this class, call CImap4ClientMtm::InvokeAsyncFunctionL(TInt,const CMsvEntrySelection &,TDes8 &,TRequestStatus &) directly. Any functionality accessible through this class can also be accessed through that function.

Copy commands:

Move commands:

Populate commands:

Parameters

TInt aFunctionId

Type of operation to perform, a TImap4Cmds value. Permitted commands are:

CImap4ClientMtm &aImap4ClientMtm

A reference to the IMAP4 Client MTM that wants to perform the Get Mail operation.

const CMsvEntrySelection &aMsvEntrySelection

A selection of messages that need to be copied/moved to a local folder. The first entry in this selection MUST be the service. Other IDs can be appended to the selection depending on which operation is to be performed. For the 'copy new', 'copy all', 'move new', 'move all', 'populate new', 'populate all' situations, the folder from which the messages are to be copied, moved or populated should be appended after the service ID. For all the other situations (i.e. copying, moving or populating a selection of messages), the selection of messages should be appended after the service ID. Please note that the selection of messages MUST have the same parent i.e. MUST be in the same folder.

TDes8 &aImap4GetMailInfo

A packaged TImImap4GetMailInfo object storing the maximum message size, the destination folder ID, and what message parts are required. For populate commands, this can be a packaged TImImap4GetPartialMailInfo object, specifying separate size limits for body text and attachments.

TRequestStatus &aObserverRequestStatus

The status to be completed when the get mail operation has completed.

Return value

CMsvOperation *

The new message operation object through which the get operation can be controlled.

See also:


DoCancel()

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.

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

See also:


RunL()

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 CImImap4GetMail::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)

CImImap4GetMail::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 CImImap4GetMail::RunL() or CActive::RunError(TInt) functions.

See also:


ProgressL()

virtual const TDesC8& ProgressL();

Description

Gets information on the progress of the operation.

Return value

const TDesC8 &

Packaged TImap4GenericProgress holding progress information.

See also:


FinalProgress()

virtual const TDesC8& FinalProgress();

Description

Gets information about a completed operation.

Return value

const TDesC8 &

Packaged TImap4GenericProgress holding progress information.

Panic codes

IMCM

30 Operation has not completed

See also: