Navigation Menu

Skip to content

Commit

Permalink
factor out channels/pipelines to lamina
Browse files Browse the repository at this point in the history
  • Loading branch information
ztellman committed Nov 3, 2010
1 parent 42cc8be commit c30c943
Show file tree
Hide file tree
Showing 35 changed files with 30 additions and 1,640 deletions.
2 changes: 1 addition & 1 deletion README.textile
Expand Up @@ -43,7 +43,7 @@ Making a simple chat client is trivial. In this, we assume that the first messa
(defn chat-handler [ch handshake]
(receive ch
(fn [name]
(receive-all ch #(when % (enqueue broadcast-channel (str name ": " %))))
(siphon (map* #(str name ": " %) ch) broadcast-channel)
(siphon broadcast-channel ch))))

(start-http-server chat-handler {:port 8080 :websocket true})
Expand Down
4 changes: 0 additions & 4 deletions aleph-core/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions aleph-core/README

This file was deleted.

1 change: 0 additions & 1 deletion aleph-core/local-push

This file was deleted.

8 changes: 0 additions & 8 deletions aleph-core/project.clj

This file was deleted.

3 changes: 0 additions & 3 deletions aleph-core/push

This file was deleted.

151 changes: 0 additions & 151 deletions aleph-core/src/aleph/core.clj

This file was deleted.

0 comments on commit c30c943

Please sign in to comment.