Salome HOME
a7ac090d37a69c86240018367aa05cf11759998b
[tools/adao_interface.git] / README.txt
1 _internal->_py_call_back : Py function intercepting multifunc call
2
3 _internal->_decorator_func : Decoration func around _internal->_py_call_back to deal with returned values of _internal->_py_call_back
4
5 ################# user GIL management in AdaoExchangeLayer
6
7 class AdaoExchangeLayer has been developped to be launched from any thread.
8
9 AdaoExchangeLayer manage the GIL (using AutoGIL) in its implementation.
10
11 Consequence the AdaoExchangeLayer instance should NOT be surrounded by GIL protection.
12
13 ############## user GIL management in AdaoModel::MainModel
14
15 The custom MainModel overloading should be GIL protected by the user.