1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/http/mhttptransactioncallback.h Wed Mar 31 12:27:01 2010 +0100
1.3 @@ -0,0 +1,67 @@
1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +
1.20 +
1.21 +/**
1.22 + @file MHTTPTransactionCallback.h
1.23 + @warning : This file contains Rose Model ID comments - please do not delete
1.24 +*/
1.25 +
1.26 +#ifndef __MHTTPTRANSACTIONCALLBACK_H__
1.27 +#define __MHTTPTRANSACTIONCALLBACK_H__
1.28 +
1.29 +// System includes
1.30 +#include <e32std.h>
1.31 +#include <http/rhttptransaction.h>
1.32 +#include <http/thttpevent.h>
1.33 +
1.34 +
1.35 +//##ModelId=3C4C1886022B
1.36 +class MHTTPTransactionCallback
1.37 +/**
1.38 +The per-transaction callback for receiving HTTP events.
1.39 +@publishedAll
1.40 +@released
1.41 +*/
1.42 + {
1.43 +public: // Methods
1.44 +
1.45 + /** Called when the filter's registration conditions are satisfied for events that
1.46 + occur on a transaction.
1.47 + Note that this function is not allowed to leave if called with
1.48 + certain events. @see THTTPEvent
1.49 + @param aTransaction The transaction that the event has occurred on.
1.50 + @param aEvent The event that has occurred.
1.51 + @leave Any Leaves must be handled by the appropriate MHFRunError.
1.52 + */
1.53 + //##ModelId=3C4C1886024C
1.54 + virtual void MHFRunL(RHTTPTransaction aTransaction, const THTTPEvent& aEvent) =0;
1.55 +
1.56 + /** Called when RunL leaves from a transaction event. This works in the same
1.57 + way as CActve::RunError; return KErrNone if you have handled the error.
1.58 + If you don't completely handle the error, a panic will occur.
1.59 + @param aError The leave code that RunL left with.
1.60 + @param aTransaction The transaction that was being processed.
1.61 + @param aEvent The Event that was being processed.
1.62 + @return KErrNone if the error has been cancelled or the code
1.63 + of the continuing error otherwise.
1.64 + */
1.65 + //##ModelId=3C4C1886023F
1.66 + virtual TInt MHFRunError(TInt aError, RHTTPTransaction aTransaction, const THTTPEvent& aEvent) =0;
1.67 +
1.68 + };
1.69 +
1.70 +#endif // __MHTTPTRANSACTIONCALLBACK_H__