GitXplorerGitXplorer
d

megach

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
dd07f6b921ff20e2bdb84f6398bf4c49054beb5e

Update README.md

dds0nt committed 6 years ago
Verified
cc1ab6ab586295ede5d37025b9ba55b0b2946b08

Usage

dds0nt committed 6 years ago
Unverified
825c702d0867d8b78a21dd3e34eed754203ab68f

committing some bridge/graph svc changes from behemoth

dds0nt committed 6 years ago
Unverified
73fd53712c8bc566b558f6005099a040c027f1a6

megach + bridge-svc working like a charm in tests

dds0nt committed 6 years ago
Unverified
93c0d6fce7257a3e5729e788df9722e422943350

WIP bridge fanning buffering synchronized mechanisms

dds0nt committed 6 years ago

README

The README file for this repository.

megach

A self-expanding channel written Go that will never block on send.

import "context"
  
ctx := context.Background()
ch := NewMegaChannel()
ch.Run(ctx)

for i := 0; i < 100; i++ {
	ch.Send <- i
}

for i := 0; i < 100; i++ {
	fmt.Println(<-ch.Recv)
}