Updates the CollectionEntry to reflect that it is has been successfully flushed to the database.

Namespace:  NHibernate.Impl
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Function PostFlush ( _
	collection As IPersistentCollection _
) As Boolean
C#
public bool PostFlush(
	IPersistentCollection collection
)
Visual C++
public:
bool PostFlush(
	IPersistentCollection^ collection
)
JavaScript
function postFlush(collection);

Parameters

collection
Type: NHibernate.Collection..::.IPersistentCollection
The IPersistentCollection that was flushed.

Remarks

Called after a successful flush.

See Also