#include "ss_datatransfer.h"
class MConnDataTransferNotify |
Public Member Functions | |
---|---|
pure virtual TInt | NotifyDataReceived(TUint, TUint) |
pure virtual TInt | NotifyDataSent(TUint, TUint) |
pure virtual TInt | NotifyDataTransferred(const TUint, const TUint) |
Interface that any sub-connection client wishing to get data notification must implement Since 9.1
Override this to update the received bytes count, and if necessary complete any outstanding RMessages
Parameter | Description |
---|---|
aDownlinkVolume | The total number of bytes sent on the sub-connection |
aCurrentGranularity | The currently set granularity of notifications |
Override this to update the sent bytes count, and if necessary complete any outstanding RMessages
Parameter | Description |
---|---|
aUplinkVolume | The total number of bytes sent on this subconnection |
aCurrentGranularity | Requested granularity |
Returns: KErrNone, or one of the system-wide error codes
Override this to receive notification for data transfered, to allow any absolute volume notifications that may be outstanding to be completed if the required amount of data has been sent/received
See also: CConnDataTransfer::DataTransferred
Parameter | Description |
---|---|
aUplinkVolume | The total volume of data sent on this subconnection |
aDownlinkVolume | The total volume of data received on this subconnection |
Returns: KErrNone, or one of the system-wide error codes