constructor()

in src/dicomImageSequencer.js [41:56]


  constructor(project, location, dataset, dicomStore, study, series) {
    this.project = project;
    this.location = location;
    this.dataset = dataset;
    this.dicomStore = dicomStore;
    this.study = study;
    this.series = series;

    // Set defaults
    this.instances = [];
    this.instanceQueue = [];
    this.loadedImages = {};
    this.fetchQueue = [];
    this.maxSimultaneousRequests = 20;
    this.currentSimultaneousRequests = 0;
  }