From d740d0b8c6420f6c32bf3e98bdb776838cef6274 Mon Sep 17 00:00:00 2001 From: Yuki Takei Date: Fri, 6 Oct 2017 16:08:27 +0900 Subject: [PATCH] remove swift 3 badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cade7c6..4d804f6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Prorsum A Go like concurrent system + networking/http libraries for Swift that works on Linux and Mac. - [](https://travis-ci.org/noppoMan/Prorsum) +[](https://travis-ci.org/noppoMan/Prorsum) ### Why Prorsum? The reason why I started this project is because I felt it was very difficult to handle asynchronous io with Swift in the project called [Slimane](https://github.com/noppoMan/Slimane) which I had previously made. In the Asynchronous paradigm in Swift, We need to often use the capture list well for closures and sometimes retain the object(Connection etc..) to avoid to release by ARC. Then I thought Go's concurrent/parallel and synchronous mecanism is suitable model for the present stage of Swift(If you want to write Server on the MultiCore Machine). Because we can easy to make async operations wituhout callback chains, can use Full Cores with the simple syntax and easy to share the memory via Channel between a Thread and a Thread.