- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
about actor
Mon, 2009-11-23, 14:18
does the actor process the next message exactly after
the first message,
or they can be processed at the same
time?
Mon, 2009-11-23, 16:07
#2
RE: about actor
A single actor processes the items on its mailbox one-at-a-time in the order the items were added to the mailbox *by the relevant partial-function* being used for a given call to receive or react
From: Caesar.Jr@hotmail.com
To: scala-user@listes.epfl.ch
Subject: [scala-user] about actor
Date: Mon, 23 Nov 2009 21:15:15 +0800
does the actor process the next message exactly after the first message, or they can be processed at the same time?
New! Receive and respond to mail from other email accounts from within Hotmail Find out how.
From: Caesar.Jr@hotmail.com
To: scala-user@listes.epfl.ch
Subject: [scala-user] about actor
Date: Mon, 23 Nov 2009 21:15:15 +0800
does the actor process the next message exactly after the first message, or they can be processed at the same time?
New! Receive and respond to mail from other email accounts from within Hotmail Find out how.
does the actor process the next message exactly after
the first message,
or they can be processed at the same
time?