alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (actor-sync-send-timeout.scala)

This example Scala source code file (actor-sync-send-timeout.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

a1, a1, a2, a2, actor, actor, array, runs, runs, test

The Scala actor-sync-send-timeout.scala source code

import scala.actors.Actor

/* This test is a regression test for SI-4759.
 */
object Test { 
  val Runs = 5
  
  def main(args: Array[String]) = {
    var i = 0
    while (i < Runs) {
      i += 1
      A1 ! 1
      Thread.sleep(500)
    }
    //println("done sending to A1")
  }
}

object A2 extends Actor {
  this.start()
  def act() {
    loop {
      react {
        case 'stop =>
          //println("A2 exiting")
          exit()
        case _ =>
      }
    }
  }
}

object A1 extends Actor {
  this.start()
  def act() {
    var i = 0
    loopWhile(i < Test.Runs) {
      i += 1
      react {
        case any =>
          A2 !? (500, any)
          if (i == Test.Runs)
            A2 ! 'stop
      }
    }
  }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala actor-sync-send-timeout.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.