store fifo import! - part-cw/lambdanative GitHub Wiki

(store-fifo-import! store name)

store-fifo-import! specified which variables are to be imported continuously from a fifo

Parameter Description
store The name of the store
name Filename of the fifo

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

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"))