searchsrv_plat/cpix_framework_api/inc/mcpixsearcherobserver.h
changeset 15 cf5c74390b98
parent 0 671dee74050a
--- a/searchsrv_plat/cpix_framework_api/inc/mcpixsearcherobserver.h	Tue Jul 06 15:30:04 2010 +0300
+++ b/searchsrv_plat/cpix_framework_api/inc/mcpixsearcherobserver.h	Wed Aug 18 10:53:26 2010 +0300
@@ -72,6 +72,16 @@
 		* @aDocument The received document. Ownership of is transfered to the observer. NULL if no more documents.
 		*/
 		virtual void HandleDocumentL(TInt aError, CSearchDocument* aDocument) = 0;
+		
+			/**
+		* HandleBatchDocumentL.
+		* Handle list of documents received from the server. 
+		* @param aError Completion code of a asynchronous request. KErrNone if operation
+		* was succesful, otherwise system wide error code.
+		* @param aReturnCount count of the documents returned.
+		* @aDocument The received document. Ownership of is transfered to the observer. NULL if no more documents.
+		*/
+		virtual void HandleBatchDocumentL(TInt aError, TInt aReturnCount, CSearchDocument** aDocument) = 0;
 	};