This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket | |
(require redex) | |
(define-language Blazes | |
(ex stream | |
('apply component ex) | |
('combine ex ex ex ...) | |
) | |
(stream 'Async 'Taint ('NDRead label)) | |
;(component (order op label) (order op)) | |
(component (order op label)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module BFSClientProtocol | |
state do | |
interface input, :request, [:reqid] => [:rtype, :arg] | |
interface output, :response, [:reqid] => [:status, :response] | |
end | |
end | |
module BFSClientMasterProtocol | |
state do | |
channel :request_msg, [:@master, :source, :reqid, :rtype, :args] |