org.springframework.data.mongodb.core
Interface DocumentCallbackHandler


public interface DocumentCallbackHandler

An interface used by MongoTemplate for processing documents returned from a MongoDB query on a per-document basis. Implementations of this interface perform the actual work of prcoessing each document but don't need to worry about exception handling. s will be caught and translated by the calling MongoTemplate An DocumentCallbackHandler is typically stateful: It keeps the result state within the object, to be available later for later inspection.

Author:
Mark Pollack

Method Summary
 void processDocument(com.mongodb.DBObject dbObject)
           
 

Method Detail

processDocument

void processDocument(com.mongodb.DBObject dbObject)
                     throws com.mongodb.MongoException,
                            org.springframework.dao.DataAccessException
Throws:
com.mongodb.MongoException
org.springframework.dao.DataAccessException


Copyright © 2011. All Rights Reserved.