ipc:sync-receive   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/scheme.xtm

Implementation

(define ipc:sync-receive
  (lambda (process id func . args)
    (let ((result (apply (eval func) args)))
      (ipc:call-async process 'ipc:run-active-label id result))))


Back to Index