about summary refs log blame commit diff stats
path: root/channel.mu
blob: def7c08bf24d42678cea1bcc4cbd108c27d3e962 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                
                                                              
                                          
             
                  
         
                       
   

                                     
                                                  
                             
 

                                         
        
   
 
 
                                                              
                                             
             
                  

                                      
                                                  
                                                  
                                       

        
   
 
 
             
             
                                       
                                                                  

                                                 

                           
 
# example program: communicating between routines using channels

recipe producer chan:address:channel -> chan:address:channel [
  # produce characters 1 to 5 on a channel
  local-scope
  load-ingredients
  # n = 0
  n:character <- copy 0
  {
    done?:boolean <- lesser-than n, 5
    break-unless done?
    # other threads might get between these prints
    $print [produce: ], n, [ 
]
    chan:address:channel <- write chan, n
    n <- add n, 1
    loop
  }
]

recipe consumer chan:address:channel -> chan:address:channel [
  # consume and print integers from a channel
  local-scope
  load-ingredients
  {
    # read an integer from the channel
    n:character, chan:address:channel <- read chan
    # other threads might get between these prints
    $print [consume: ], n:character, [ 
]
    loop
  }
]

recipe main [
  local-scope
  chan:address:channel <- new-channel 3
  # create two background 'routines' that communicate by a channel
  routine1:number <- start-running producer, chan
  routine2:number <- start-running consumer, chan
  wait-for-routine routine1
  wait-for-routine routine2
]