libchan
libchan copied to clipboard
Like Go channels over the network
The tag line on github for this project states that it is "Like Go channels over the network". In Go, channels have two purposes: communication and synchronisation. The above phrase...
Over at [jschan](http://github.com/graftjs/jschan) we are busy discussing allowing peer-to-peer connections via webRTC. GraftJS/jschan#27 We're currently planning to do this the same way we did the websocket support (#56), with a...
Use [CodeLingo](https://codelingo.io) to automatically fix function comments following the [Code Review Comments guidelines](https://github.com/golang/go/wiki/CodeReviewComments#error-strings). This patch was generated by running the CodeLingo Rewrite Flow over the "[go-error-fmt](https://github.com/codelingo/codelingo/blob/master/tenets/codelingo/code-review-comments/go-error-fmt/codelingo.yaml)" Tenet. Note: the same...
Is there a recommended pattern for implementing a server that can handle a multitude of different requests? The question I have is how to represent the request. For example, suppose...
This fixes the build issue in CircleCI due to golint requiring > 1.5 - see [here](https://github.com/golang/lint/issues/198) for details.
As I wasn't at the DockerCon I haven't heard how libchan is going to be used, but if multiple streams on top of these transports is a goal I suggest...
Is there any documentation for this? Am I missing something?
It seems when using anonymous embedded structs, field values are not transmitted. For example, given the following types: ``` type B struct { I int } type A struct {...