Spring Data Document

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(DBObject dbObject)
           
 

Method Detail

processDocument

void processDocument(DBObject dbObject)
                     throws MongoException,
                            DataAccessException
Throws:
MongoException
DataAccessException

Spring Data Document

Copyright © 2012. All Rights Reserved.