Example #1
0
//! Starts all Plugins.
dmz::Boolean
dmz::Application::start () {

   if (!_state.error) {

      _state.startTime = get_time ();
      _state.frameCount = 0.0;
      _state.container.start_plugins ();
      _state.rt.update_time_slice ();

      FileCache *fc (FileCache::get_interface (_state.rt.get_context ()));

      if (fc) { fc->process_all_requests (); }
   }

   return !_state.error;
}