Created
March 21, 2011 19:10
-
-
Save palvaro/880009 to your computer and use it in GitHub Desktop.
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] | |
channel :response_msg, [:@source, :master, :reqid, :status, :response] | |
end | |
end |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment