We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e5d69f commit 4fe0b66Copy full SHA for 4fe0b66
docs/ADCore/plugin_guidelines.rst
@@ -45,6 +45,7 @@ The following are guidelines and rules for writing plugins
45
could modify during this time, so they should only access local
46
variables, not class variables (which includes the parameter
47
library).
48
-- If plugins generate new or modified NDArrays then they must call
49
- ``NDPluginDriver::doNDArrayCallbacks()`` so that registered clients can
50
- 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
51
+ ``processCallbacks()`` function.
0 commit comments