public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch) { this.fetch = fetch; this.init = init; this.globals = globals; this.initBranch = initBranch; }
public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch, TextWriter stdout) { this.fetch = fetch; this.init = init; this.globals = globals; this.initBranch = initBranch; this.stdout = stdout; }
public Branch(Globals globals, TextWriter stdout, Help helper, Cleanup cleanup, InitBranch initBranch) { this.globals = globals; this.stdout = stdout; this.helper = helper; this.cleanup = cleanup; this.initBranch = initBranch; }
public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch) { this.fetch = fetch; this.init = init; this.globals = globals; this.initBranch = initBranch; globals.GcCountdown = globals.GcPeriod; }
public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin) { _globals = globals; _helper = helper; _cleanup = cleanup; _initBranch = initBranch; _rcheckin = rcheckin; }
public Branch(Globals globals, Help helper, Cleanup cleanup, InitBranch initBranch, Rcheckin rcheckin) { this.globals = globals; this.helper = helper; this.cleanup = cleanup; this.initBranch = initBranch; this.rcheckin = rcheckin; }
public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch) { _fetch = fetch; _init = init; _globals = globals; _initBranch = initBranch; globals.GcCountdown = globals.GcPeriod; }
public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch, TextWriter stdout) { this.fetch = fetch; this.init = init; this.globals = globals; this.initBranch = initBranch; //[Temporary] Remove in the next version! initBranch.DontDisplayObsoleteMessage = true; this.stdout = stdout; }
public Branch(Globals globals, TextWriter stdout, Help helper, Cleanup cleanup, InitBranch initBranch) { this.globals = globals; this.stdout = stdout; this.helper = helper; this.cleanup = cleanup; this.initBranch = initBranch; //[Temporary] Remove in the next version! initBranch.DontDisplayObsoleteMessage = true; }
public Clone(Globals globals, Fetch fetch, Init init, InitBranch initBranch, TextWriter stdout) { this.fetch = fetch; this.init = init; this.globals = globals; this.initBranch = initBranch; //[Temporary] Remove in the next version! if (initBranch != null) { initBranch.DontDisplayObsoleteMessage = true; } this.stdout = stdout; globals.GcCountdown = globals.GcPeriod; }