AMEventBooted.mesa
Paul Rovner, April 22, 1983 10:02 am
DIRECTORY
WorldVM
USING[ World ];
AMEventBooted:
CEDAR
DEFINITIONS =
BEGIN
BootedNotifier:
TYPE =
PROC[world: WorldVM.World, clientData:
REF];
registered "BootedNotifiers" are called just before the booted event is reported.
RegisterBootedNotifier:
PROC[proc: BootedNotifier, world: WorldVM.World ←
NIL, clientData:
REF ←
NIL];
worldName = NIL causes proc to be called for all booted events
UnRegisterBootedNotifier:
PROC[proc: BootedNotifier, world: WorldVM.World ←
NIL, clientData:
REF ←
NIL];
clientData = NIL implies wildcard match on clientData
ditto for world
END.