From 960ad02762e082a8eb3b91485b2106c4bd709a9f Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 7 Jun 2013 11:35:50 -0400 Subject: [PATCH] Observe instead of participating at root. --- marketplace/examples/echo-paper.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marketplace/examples/echo-paper.rkt b/marketplace/examples/echo-paper.rkt index a0f5974..6317bac 100644 --- a/marketplace/examples/echo-paper.rkt +++ b/marketplace/examples/echo-paper.rkt @@ -1,6 +1,6 @@ #lang marketplace -(subscribe-to-topic (tcp-channel ? (tcp-listener 5999) ?) +(observe-publishers (tcp-channel ? (tcp-listener 5999) ?) (match-conversation (tcp-channel from to _) (on-presence (spawn (echoer from to)))))