Difference between revisions of "Background Service Manager"

From OpenEMR Project Wiki
(Created page with "=Overview= :OpenEMR (as of version 4.1.2) has a mechanism for running/tracking background services. Please see the following script documentation for details: :*http://github.com...")
 
Line 1: Line 1:
=Overview=
=Overview=
:OpenEMR (as of version 4.1.2) has a mechanism for running/tracking background services. Please see the following script documentation for details:
:OpenEMR (as of version 4.1.2) has a mechanism for running/tracking background services. This mechanism scans through the available services and executes the corresponding service calls at a configurable frequency, to allow for seamless integration of background activities. The mechanism was created to allow regular retrieval of incoming Direct messages. It can be readily extended to any number of additional services. Please see the following script documentation for details:
:*http://github.com/openemr/openemr/blob/master/library/ajax/execute_background_services.php
:*http://github.com/openemr/openemr/blob/master/library/ajax/execute_background_services.php


[[Category:Developer Guide]]
[[Category:Developer Guide]]

Revision as of 17:46, 24 February 2013

Overview

OpenEMR (as of version 4.1.2) has a mechanism for running/tracking background services. This mechanism scans through the available services and executes the corresponding service calls at a configurable frequency, to allow for seamless integration of background activities. The mechanism was created to allow regular retrieval of incoming Direct messages. It can be readily extended to any number of additional services. Please see the following script documentation for details: