[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Convenience method for logging the parameters passed to the update method. Only logs if debug is enabled.

Namespace: net.esper.view
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Shared Sub DumpUpdateParams ( _
	prefix As String, _
	newData As Object(), _
	oldData As Object() _
)
C#
public static void DumpUpdateParams (
	string prefix,
	Object[] newData,
	Object[] oldData
)
Visual C++
public:
static void DumpUpdateParams (
	String^ prefix, 
	array<Object^>^ newData, 
	array<Object^>^ oldData
)

Parameters

prefix
System.String
is a prefix text to output for each line
newData
System.Object[]
is the new data in an update call
oldData
System.Object[]
is the old data in an update call