Skip to content

Commit 8a06602

Browse files
Mention correct method in array sorting docs
In commit 1569c4d (Removed numParams and added maxThreads to constructor; removed doNDArrayCallbacks method, use NDPluginDriver::endProcessCallbacks instead; minor fix to asynPrint calls, 2017-03-23), doNDArrayCallbacks was renamed to endProcessCallbacks in NDPluginDriver, but its mentions in the "Sorting of output NDArrays" section weren't updated accordingly. Fix that.
1 parent 34c0554 commit 8a06602

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/ADCore/NDPluginDriver.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ in the correct order. This sorting option is enabled by setting SortMode=Sorted,
248248
and works using the following algorithm:
249249

250250
- An std::multiset object is created to store the NDArray output pointers as they
251-
are received in NDArrayDriver::doNDArrayCallbacks. This is the method that all derived
251+
are received in NDArrayDriver::endProcessCallbacks. This is the method that all derived
252252
classes must call to output NDArrays to downstream plugins. This std::multiset also
253-
stores the time at which each NDArray was received by the NDArrayDriver::doNDArrayCallbacks
253+
stores the time at which each NDArray was received by the NDArrayDriver::endProcessCallbacks
254254
method. This multiset is automatically sorted by the uniqueId of each NDArray.
255255

256256
- A worker thread is created which processes at the time interval specified by SortTime.

0 commit comments

Comments
 (0)