Name

global.DiscoveryLaunch

Description

No description available

Script

var DiscoveryLaunch = Class.create();
DiscoveryLaunch.prototype = {
  /*
   * Initializes this instance.
   * 
   * status:   the DiscoveryStatus instance for this discovery.
   * schedule: the DiscoverySchedule instance for this discovery.
   */
  initialize: function(status, schedule) {
      this.status        = status;
      this.schedule      = schedule;
      this.behaviorPhase = {}; // hashmap of behavior ID to current phase...
      this.probesLaunched = false;
      this.dLogger = new DiscoveryLogger(this.status);
      this.errorManager = new SNC.DiscoveryErrorManager();
  },
  
  launch: function() {}, // subclasses must implement

  type: 'DiscoveryLaunch'
}

  

Sys ID

67f19d7d97032100e4c3955fda297518

Offical Documentation

Official Docs: