Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

store-fifo-export marks variables for export through a fifo whenever they are assigned a new value.

Note: fifos are not files, and should be created with the mkfifo command!

Parameter Description
store The name of the store
name Filename of the fifo
parameters List of parameters to be exported in the fifo

Example

Example 1: Setup import and export fifos for a MonitorSrv application

(set! store (make-store "store"))
(store-fifo-import! store "../fifo.Monitor")
(store-fifo-export store "../fifo.iControl" '("hr" "st1" "st2" "st3" "imp_rr"))
Clone this wiki locally