Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

unix, windows, darwin : Implemented uv channels #858

Closed
wants to merge 1 commit into from

Commits on Jul 21, 2013

  1. unix, windows, darwin : Implemented uv channels

    A channel provides a mechanism for two concurrently executing functions
    to communicate by passing any value. This value will be passed to all
    the receivers that the channel has.
    
    Channel internally holds a mutex and synchronizes the messages it gets.
    Because of this, user don't have to acquire a lock when sending or
    receiving from channels.
    navaneeth committed Jul 21, 2013
    Copy the full SHA
    5dba3bc View commit details
    Browse the repository at this point in the history