Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6IXSLT::continueTransform ( const P6CHAR pBuffer,
P6UINT32  bufSize,
P6BOOL  isLast 
)
pure virtual

A successful call to the startTransform() method must be called before a call to this method is allowed.

This method supports the XML to be performed to be processes in a streaming manner (i.e., over multiple chunks form several buffers over time).

Parameters
pBuffer[ in ] Part of the XML (or JSON) to be transformed by a previously compiled XSLT stylesheet
bufSize[ in ] The number of characters in the buffer pointed to by pBuffer
isLast[ in ] pBuffer contains all the last of the XML to transform?
Returns
SuccessP6R::eOk 
FailureP6R::eNotInitializedA successful call to intialize() must be made before calling this funciton.
P6R::eInvalidArgpBuffer is NULL.
P6R::eInvalidStateA successful call to startTransform() must be done before calling this function.