|
||
class MTranpNotification;
A callback interface providing notification of events that occur during a picture transmission session.
Users of a picture transmission session must derive from this class an provide implementation for all of the pure virtual functions.
Defined in MTranpNotification
:
Connected()
This function is called when a peer device connects successfully to the host dev...Disconnected()
This function is called when a peer device disconnects or is disconnected from t...Error(TInt)
This function is called when the connection with the peer device drops during pi...GetComplete()
This function is called when the reception of picture data is complete. MTN_ExtensionInterfaceL(TUid,void *&)
Returns a null aObject if the extension is not implemented, or a pointer to anot...ProgressIndication(TInt)
This function is called during the sending or receiving of picture data and indi...PutComplete()
This function is called when the sending of picture data is complete. QueryComplete()
This function is called when an operation querying the processing ability of a p...CTranpSession
Encapsulates the behaviour for sending a picture to a peer device and for receiv...virtual void Connected()=0;
This function is called when a peer device connects successfully to the host device following an attempt to receive a picture.
virtual void Disconnected()=0;
This function is called when a peer device disconnects or is disconnected from the host device.
virtual void GetComplete()=0;
This function is called when the reception of picture data is complete.
virtual void ProgressIndication(TInt aPercent)=0;
This function is called during the sending or receiving of picture data and indicates the percentage of the data that has been transmitted.
|
virtual void PutComplete()=0;
This function is called when the sending of picture data is complete.
virtual void QueryComplete()=0;
This function is called when an operation querying the processing ability of a peer device completes.
virtual void Error(TInt aError)=0;
This function is called when the connection with the peer device drops during picture data transmission.
|
IMPORT_C virtual void MTN_ExtensionInterfaceL(TUid aInterface, void *&aObject);
Returns a null aObject if the extension is not implemented, or a pointer to another interface if it is.
|