- Publicity: Public Only All
apm-callback-procs.tcl
Procedures in this file
- search::install::after_instantiate (private)
Detailed information
search::install::after_instantiate (private)
search::install::after_instantiate -package_id package_id
Package after instantiation callback proc. Schedule the indexer so the admin doesn't have to restart their server to get search up and running after mounting it.
- Switches:
- -package_id (required)
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Content File Source
namespace eval search {} namespace eval search::install {} d_proc -private search::install::after_instantiate { -package_id:required } { Package after instantiation callback proc. Schedule the indexer so the admin doesn't have to restart their server to get search up and running after mounting it. } { # DRB: Unless it is being instantiated from initial install as specified by an install.xml # file, in which case the init file hasn't been sourced, and the user has to restart their # server anyway ... if { [info procs search::init::schedule_indexer] ne "" } { search::init::schedule_indexer } } # Local variables: # mode: tcl # tcl-indent-level: 4 # indent-tabs-mode: nil # End: