Skip to content

cloudnoize/C-channels

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

C++ Channels

Implementation of Golang channles in c++.

zero capacity channel

  • Pusing thread is blocked until consumer thread pops.
  • Or Popping thread is blocked until producing thread pushes.

Capacity >= 1

  • Producing thread can push utill capacity is full then it blocked.
  • Consuming thread is blocked when popping an empty channel.

About

Like Golang channels

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages