MBrace.Core


Builders

Namespace: MBrace.Core

A collection of builder implementations for MBrace workflows

Nested types and modules

TypeDescription
CloudBuilder

Represents a workflow builder used to specify distributed cloud computations.

CloudLocalBuilder

Represents a workflow builder used to specify single-machine cloud computations.

Functions and values

Function or valueDescription
cloud
Signature: CloudBuilder

A workflow builder used to specify distributed cloud computations. Constituent parts of the computation may be serialized, scheduled and may migrate between different distributed execution contexts. If the computation accesses concurrent shared memory then replace by a more constrained "local" workflow.

local
Signature: CloudLocalBuilder

A workflow builder used to specify single-machine cloud computations. The computation runs to completion as a locally executing in-memory computation. The computation may access concurrent shared memory and unserializable resources.

Fork me on GitHub