From 4fe0b663a7d2904edd40bee2154f5d86390bb283 Mon Sep 17 00:00:00 2001 From: Mark Rivers Date: Sun, 1 Dec 2024 14:46:56 -0600 Subject: [PATCH] Fixed obsolete text --- docs/ADCore/plugin_guidelines.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/ADCore/plugin_guidelines.rst b/docs/ADCore/plugin_guidelines.rst index 92c4dc068..11cff9f5f 100644 --- a/docs/ADCore/plugin_guidelines.rst +++ b/docs/ADCore/plugin_guidelines.rst @@ -45,6 +45,7 @@ The following are guidelines and rules for writing plugins could modify during this time, so they should only access local variables, not class variables (which includes the parameter library). -- If plugins generate new or modified NDArrays then they must call - ``NDPluginDriver::doNDArrayCallbacks()`` so that registered clients can - get the values of the new arrays. +- Plugins will generally call ``NDPluginDriver::beginProcessCallbacks()`` + near the beginning of their ``processCallbacks()`` method, and will call + ``NDPluginDriver::endProcessCallbacks()`` near the end of their + ``processCallbacks()`` function.