def append(msg: Msg, session: OutputChannel[Any]) {
changeSize(1) // size always increases by 1
val el = new MQueueElement(msg, session)
if (isEmpty) first = el
else last.next = el
last = el
}
the append method of the MQueue(message queue of the actor) have no maximum size. Won't this cause outOfMemory?
And look into the changeSize(1)
private var _size = 0
def size = _size
final def isEmpty = last eq null
protected def changeSize(diff: Int) {
_size += diff
}
why no @volatile with private var _size ?
what if append times exceed the Int.maxValue?
do we just expect those will never happend?