endIndividualRequestsLogging

endIndividualRequestsLogging(samplingHandle: Integer;
                             userNumber:     Integer;
                             userText:       String);

The endIndividualRequestsLogging method of the Node class terminates the sampling of individual remote requests or cache activities started by the beginIndividualRequestsLogging method of the Node class.

The NodeSamplIntervalCallBack entry point is invoked with the eventType parameter set to 2.

The endIndividualRequestsLogging method parameters are listed in the following table.

Parameter Description
samplingHandle Identifies the sampling context returned by the beginSample method when sampling for the node started
userNumber Identifies the sample in the corresponding user library invocations
userText In conjunction with the userNumber parameter, identifies the sample

The following code fragment shows an example of the endIndividualRequestsLogging method and its parameters.

node.endIndividualRequestsLogging(samplingHandle, 4, "End logging of remote 
                           requests");

The JADE-supplied library writes an endInterval record (type 12), containing your specified user number and text, which is written to the output file specified in the initializationParameter parameter of the beginSample method.

For more details, see Chapter 4 of the JADE Object Manager Guide.