Reputation: 701
I am bit confused to understand role and responsibilities of core composer runtime and composer platform runtime.
Different component of fabric-composer architecture:
Kindly explain in details of core runtime, runtime container and composer platform runtime, also cover following question:
will there be different instance of composer platform runtime for each deployed business network?
Upvotes: 0
Views: 212
Reputation: 2297
Hyperledger Composer has a modular architecture and is designed to support multiple runtimes (typically blockchain platforms).
There are currently 4 runtime implementations
This modularity is achieved via the core composer-runtime
module, which is the core JS code that is common across all runtimes. There is then a composer-runtime-xxxx
module for each supported runtime, as well as a composer-connector-xxxx
module that exposes the runtime out of process to the Playground.
In the future we would love to see Composer support for other blockchains.
The runtime architecture was covered in a recorded community call on June 29th 2017. The recordings are available here: https://drive.google.com/drive/folders/0B_NJV6eJXAA1SDdTTjNmRktRdUk
Slides are on Slideshare: https://www.slideshare.net/SimonStone8/hyperledger-composer-architecture
Upvotes: 1