-
Notifications
You must be signed in to change notification settings - Fork 86
scheduler endcase
Chris Petersen edited this page Oct 16, 2014
·
1 revision
scheduler-endcase marks the end of a patient case
Parameter | Description |
---|---|
store | Data store name |
Example 1: From the main loop of a distributed monitoring application, which exchanges data using fifo's. Here the main application notifies the other monitoring applications to start or end cases by setting the "CaseStartPending" and "CaseEndPending" variables respectively.
(lambda (t x y)
(if (store-ref store "CaseStartPending" #f)
(begin (scheduler-startcase store (store-ref store "CaseStartPending" #f))
(store-set! store "CaseStartPending" #f)))
(if (store-ref store "CaseEndPending" #f)
(begin (scheduler-endcase store) (store-set! store "CaseEndPending" #f)))
(log-rollcase store)
(scheduler-iterate)
(thread-sleep! 0.05)
)
-
- accelerometer
- alist
- audio
- audioaux
- base64
- btle-scan
- camera
- cdb
- cgi
- config
- csv
- curl
- digest
- dmtx
- download
- eventloop
- fcgi
- fft
- generalized-arrays
- gps
- graph
- gyro
- hidapi
- hpdf
- html
- httpsclient
- hybridapp
- json
- lmdb
- ln_core
- ln_glcore
- ln_glgui
- ln_store
- localization
- localization_gui
- localnotification
- magnetometer
- mdns
- mqtt
- mqtt-store
- multitouch
- oauth
- orientation
- p256ecdsa
- png
- portaudio
- pregexp
- pressure
- prime
- pushnotification
- redcap
- rsa
- rtaudio
- rupi
- rotation
- sanestring
- scheduler
- serial
- sets
- settings
- simplexnoise
- sqlite
- ssax
- syntax-case
- timestamp
- ttf
- uiform
- url
- uuid
- vibrate
- videoplayer
- watchdog
- website
- xml
- zip