|
Scala Library Documentation
|
|
scala/actors/MessageQueue.scala]
class
MessageQueue
extends AnyRefMessageQueue provides an efficient
implementation of a message queue specialized for this actor
library. Classes in this package are supposed to be the only
clients of this class.| Value Summary | |
var
|
first : MessageQueueElement |
var
|
last : MessageQueueElement |
| Method Summary | |
def
|
append (msg : Any, session : Channel[Any]) : Unit |
def
|
extractFirst (p : (Any) => Boolean) : MessageQueueElement |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Value Details |
| Method Details |
|
Scala Library Documentation
|
|