Skip to content

Commit

Permalink
Merge 881c45a into 90fd48a
Browse files Browse the repository at this point in the history
  • Loading branch information
strayobject committed Oct 7, 2016
2 parents 90fd48a + 881c45a commit a0a641e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -2,7 +2,7 @@

**Asynchronous, non-blocking WebSocket server.**

This library is a component for [Icicle](https://github.com/icicleio/icicle) that provides an asynchronous WebSocket server that can handle normal HTTP requests and WebSocket requests on the same port. Like other Icicle components, this library uses [Coroutines](https://icicle.io/docs/manual/coroutines/) built from [Awaitables](https://icicle.io/docs/manual/awaitables/) and [Generators](http://www.php.net/manual/en/language.generators.overview.php) to make writing asynchronous code more like writing synchronous code.
This library is a component for [Icicle](https://github.com/icicleio/icicle) that provides an asynchronous WebSocket server which can handle normal HTTP requests and WebSocket requests on the same port. Like other Icicle components, this library uses [Coroutines](https://icicle.io/docs/manual/coroutines/) built from [Awaitables](https://icicle.io/docs/manual/awaitables/) and [Generators](http://www.php.net/manual/en/language.generators.overview.php) to make writing asynchronous code more like writing synchronous code.

[![Build Status](https://img.shields.io/travis/icicleio/websocket/v1.x.svg?style=flat-square)](https://travis-ci.org/icicleio/websocket)
[![Coverage Status](https://img.shields.io/coveralls/icicleio/websocket/v1.x.svg?style=flat-square)](https://coveralls.io/r/icicleio/websocket)
Expand Down Expand Up @@ -138,4 +138,5 @@ $server = new Server(new class ($echo) implements RequestHandler {

$server->listen(8080);

Loop\run();```
Loop\run();
```

0 comments on commit a0a641e

Please sign in to comment.