Registry StartupPage edited by Bob Harner
Comment:
Renamed
Changes (0)
Full ContentRegistry StartupIt is possible to provide extra logic to be executed at Registry startup, by making contributions to the RegistryStartup service configuration. The values contributed are Runnable objects. The configuration is ordered, so it is possible to control in what order the objects are executed. RegistryStartup occurs after eager loaded services are instantiated. Here's an example of a module that makes a contribution. public class MyModule { public static void contributeRegistryStartup(OrderedConfiguration<Runnable> configuration) { configuration.add("MyContributionName", new Runnable() { ... }); } }
Change Notification Preferences
View Online
|
View Changes
|
