CloudLocalBuilder
  Namespace: MBrace.Core
  Parent Module: Builders
Represents a workflow builder used to specify single-machine cloud computations.
Constructors
| Constructor | Description | 
          
            new()
          
          
            Signature: unit -> CloudLocalBuilder 
         | 
        
          
               CompiledName:   | 
      
Instance members
| Instance member | Description | 
          
            Bind(f, g)
          
          
            Signature: (f:LocalCloud<'T> * g:('T -> LocalCloud<'S>)) -> LocalCloud<'S> 
        Type parameters: 'T, 'S  | 
        |
          
            Combine(f, g)
          
          
            Signature: (f:LocalCloud<unit> * g:LocalCloud<'T>) -> LocalCloud<'T> 
        Type parameters: 'T  | 
        |
          
            Delay(f)
          
          
            Signature: (f:(unit -> LocalCloud<'T>)) -> LocalCloud<'T> 
        Type parameters: 'T  | 
        |
          
            For(ts, body)
          
          
            Signature: (ts:seq<'T> * body:('T -> LocalCloud<unit>)) -> LocalCloud<unit> 
        Type parameters: 'T  | 
        |
          
            Return(t)
          
          
            Signature: t:'T -> LocalCloud<'T> 
        Type parameters: 'T  | 
        |
          
            ReturnFrom(c)
          
          
            Signature: c:LocalCloud<'T> -> LocalCloud<'T> 
        Type parameters: 'T  | 
        |
          
            TryFinally(f, finalizer)
          
          
            Signature: (f:LocalCloud<'T> * finalizer:(unit -> unit)) -> LocalCloud<'T> 
        Type parameters: 'T  | 
        |
          
            TryWith(f, handler)
          
          
            Signature: (f:LocalCloud<'T> * handler:(exn -> LocalCloud<'T>)) -> LocalCloud<'T> 
        Type parameters: 'T  | 
        |
          
            Using(value, bindF)
          
          
            Signature: (value:'T * bindF:('T -> LocalCloud<'U>)) -> LocalCloud<'U> 
        Type parameters: 'T, 'U  | 
        |
          
            Using(value, bindF)
          
          
            Signature: (value:'T * bindF:('T -> LocalCloud<'U>)) -> LocalCloud<'U> 
        Type parameters: 'T, 'U, 'p  | 
        |
          
            While(pred, body)
          
          
            Signature: (pred:(unit -> bool) * body:LocalCloud<unit>) -> LocalCloud<unit> 
         | 
        |
          
            Zero()
          
          
            Signature: unit -> LocalCloud<unit> 
         |