equal
deleted
inserted
replaced
106 |
106 |
107 /** |
107 /** |
108 */ |
108 */ |
109 void RunL() |
109 void RunL() |
110 { |
110 { |
111 LOG_FUNC |
|
112 |
|
113 TInt completionCode(iStatus.Int()); |
111 TInt completionCode(iStatus.Int()); |
114 RDebug::Printf("Transfer err=%d",completionCode); |
112 RDebug::Printf("Transfer err=%d",completionCode); |
115 |
113 |
116 // Notify of transfer completion (successful or otherwise) |
114 // Notify of transfer completion (successful or otherwise) |
117 iObserver.TransferCompleteL(iTransferIdentity,completionCode); |
115 iObserver.TransferCompleteL(iTransferIdentity,completionCode); |
119 |
117 |
120 /** |
118 /** |
121 */ |
119 */ |
122 void DoCancel() |
120 void DoCancel() |
123 { |
121 { |
124 LOG_FUNC |
|
125 |
|
126 // Will cancel all transfers on this pipe |
122 // Will cancel all transfers on this pipe |
127 |
123 |
128 Pipe().CancelAllTransfers(); |
124 Pipe().CancelAllTransfers(); |
129 } |
125 } |
130 |
126 |