messageComplete message, with
the completed Message object as argument source.
msg = .Message~new(.Array~new(1000)~fill(0)~allIndexes, "sort")
msg~notify(.Sorter~new)
msg~start
say "processing continues"
::class Sorter inherit MessageNotification
::method messageComplete
use strict arg message
say message~target~items "items sorted"
processing continues
1000 items sorted