

The standard library At api defines access to functionality for registering functions to be run at system startup or shutdown.
The At api is implemented by the src/lib/std/src/nj/at.pkg package.
The At api source code is in src/lib/std/src/nj/at.api.
The above information is manually maintained and may contain errors.
api { When
= APP_STARTUP
| FORK_TO_DISK
| SHUTDOWN
| SPAWN_TO_DISK
| STARTUP;
all : List(When );
schedule : (String , List(When ) , (When -> Void))
-> Null_Or(((List(When ) , (When -> Void))) );
deschedule : String
-> Null_Or(((List(When ) , (When -> Void))) );
run_functions_scheduled_to_run : When -> Void;
};

