summaryrefslogtreecommitdiff
path: root/sources/examples/ComputeServer.scala
diff options
context:
space:
mode:
Diffstat (limited to 'sources/examples/ComputeServer.scala')
-rw-r--r--sources/examples/ComputeServer.scala32
1 files changed, 32 insertions, 0 deletions
diff --git a/sources/examples/ComputeServer.scala b/sources/examples/ComputeServer.scala
new file mode 100644
index 0000000000..e322860b78
--- /dev/null
+++ b/sources/examples/ComputeServer.scala
@@ -0,0 +1,32 @@
+package examples;
+
+import concurrent._, concurrent.ops._;
+
+class ComputeServer(n: Int) {
+ private trait Job {
+ type t;
+ def task: t;
+ def return(x: t): Unit;
+ }
+
+ private val openJobs = new Channel[Job]();
+
+ private def processor(i: Int): Unit {
+ while (True) {
+ val job = openJobs.read;
+ job.return(job.task)
+ }
+ }
+ def future[a](def p: a): () => a {
+ val reply = new SyncVar[a]();
+ openJobs.write{
+ new Job with {
+ type t = a;
+ def task = p;
+ def return(x: a) = reply.set(x);
+ }
+ }
+ () => reply.get
+ }
+ replicate(1,n){processor}
+}