This repository was archived by the owner on Nov 5, 2018. It is now read-only.
  
  
  
  
  
Description
How to know if all the receivers has been dropped? now that send function no longer returns anything.
  
  
    
        
           | 
               pub fn send(&self, msg: T) {  | 
        
        
           | 
                   match &self.0.flavor {  | 
        
        
           | 
                       ChannelFlavor::Array(chan) => chan.send(msg),  | 
        
        
           | 
                       ChannelFlavor::List(chan) => chan.send(msg),  | 
        
        
           | 
                       ChannelFlavor::Zero(chan) => chan.send(msg),  | 
        
        
           | 
                   }  | 
        
        
           | 
               }  |