searchsrv_plat/cpix_framework_api/inc/mcpixsearcherobserver.h
changeset 14 8bd192d47aaa
parent 0 671dee74050a
equal deleted inserted replaced
13:fcb2a58c181b 14:8bd192d47aaa
    70 		* @param aError Completion code of a asynchronous request. KErrNone if operation
    70 		* @param aError Completion code of a asynchronous request. KErrNone if operation
    71 		* was succesful, otherwise system wide error code.
    71 		* was succesful, otherwise system wide error code.
    72 		* @aDocument The received document. Ownership of is transfered to the observer. NULL if no more documents.
    72 		* @aDocument The received document. Ownership of is transfered to the observer. NULL if no more documents.
    73 		*/
    73 		*/
    74 		virtual void HandleDocumentL(TInt aError, CSearchDocument* aDocument) = 0;
    74 		virtual void HandleDocumentL(TInt aError, CSearchDocument* aDocument) = 0;
       
    75 		
       
    76 			/**
       
    77 		* HandleBatchDocumentL.
       
    78 		* Handle list of documents received from the server. 
       
    79 		* @param aError Completion code of a asynchronous request. KErrNone if operation
       
    80 		* was succesful, otherwise system wide error code.
       
    81 		* @param aReturnCount count of the documents returned.
       
    82 		* @aDocument The received document. Ownership of is transfered to the observer. NULL if no more documents.
       
    83 		*/
       
    84 		virtual void HandleBatchDocumentL(TInt aError, TInt aReturnCount, CSearchDocument** aDocument) = 0;
    75 	};
    85 	};
    76 
    86 
    77 
    87 
    78 #endif // __MCPIXSEARCHEROBSERVER_H__
    88 #endif // __MCPIXSEARCHEROBSERVER_H__
    79 
    89