Location:
mhttptransactioncallback.h
class MHTTPTransactionCallback;
The per-transaction callback for receiving HTTP events.
Defined in MHTTPTransactionCallback
:
MHFRunError()
, MHFRunL()
virtual void MHFRunL(RHTTPTransaction aTransaction, const THTTPEvent &aEvent)=0;
Called when the filter's registration conditions are satisfied for events that occur on a transaction. Note that this function is not allowed to leave if called with certain events.
|
|
virtual TInt MHFRunError(TInt aError, RHTTPTransaction aTransaction, const THTTPEvent &aEvent)=0;
Called when RunL leaves from a transaction event. This works in the same way as CActve::RunError; return KErrNone if you have handled the error. If you don't completely handle the error, a panic will occur.
|
|