Synchronous plugin

0

Studying on Microsoft Dynamics 365 , I came across information that there is a possibility of extending the tool on the server, creating plugins síncronos or assíncronos .

Microsoft has an asynchronous information session ( link ), but it does not have nothing about the synchronous.

Looking at the page above, I was able to understand and abstract the concept of an asynchronous plugin, but I can not find any material about the synchronous plugins, let alone parallel the standard definition of the two media and understand the concept.

I would like to know if there is any material about synchronous plugins, or if you would know to answer me, so that I can understand how they work, what they do and what their limitations are.     

asked by anonymous 31.08.2017 / 15:59

1 answer

0

The Synchronous Plugin performs its operation on the Entity's main execution thread, that is, while it is not done, other plugins or executions are not performed until this plugin finishes, it basically hangs the execution until it is executed and finished.

The plugin Assynchrono performs its operation in the background, that is, it does not lock the system and even though it has not finished running, the other executions and plugins will run as it is running in a background thread .

    
29.08.2018 / 17:05