libs-steptalk/Testing/Smalltalk/observer.st

25 lines
411 B
Smalltalk
Raw Normal View History

[|
main
|center|
center := NSDistributedNotificationCenter defaultCenter.
Transcript showLine:'Registering'.
center addObserver:self
selector:#notification:
name:nil
object:'s'.
NSRunLoop currentRunLoop run.
!
notification:notif
Transcript showLine:'Notification received: ', (notif description).
^self
]