improved scaladoc for Actor.scala

This commit is contained in:
Jonas Bonér 2010-04-08 17:05:59 +02:00
parent 34dee73c71
commit 2b8db32587

View file

@ -520,6 +520,7 @@ trait Actor extends TransactionManagement with Logging {
/**
* Sends a message asynchronously and waits on a future for a reply message.
* Uses the time-out defined in the Actor.
* <p/>
* It waits on the reply either until it receives it (in the form of <code>Some(replyMessage)</code>)
* or until the timeout expires (which will return None). E.g. send-and-receive-eventually semantics.