company logo

Dictionary :: resetOperations - Reset operations

In order to improve operation performance, operations, OSI functions and function calls to C++ interface functions are cached in the dictionary. In order to reload e.g. OSI functions updated in a resource database or file, all operations have to be removed from the dictionary before.

Implementation overview

Implementation details

  1. Remove functions from local dictionary
    Dictionary  :: resetOperations (  )

    The function removes loaded OSI functions from the local dictionary, which is the client dictionary, when being called from client and the server dictionary when being called from server.

  2. to list
  3. Remove functions from server dictionary
    Dictionary  :: resetOperations ( bool bServer )

    The function removes loaded OSI functions from the server dictionary, which is the server dictionary, when being called in a client server application and the client dictionary when being called in a local application.

    Notes:

    Removing OSI functions from server dictionary may affect other applications running with the same server.

    • bServer - Server option
  4. to list