Sets responseMsToLive to zero in some dataService methods and adds ability to reset the responseMsToLive value in subclasses.

This commit is contained in:
Michael W Spalti
2019-09-16 10:00:45 -07:00
parent fbcffd8097
commit 934f5a1bd0
5 changed files with 27 additions and 8 deletions

View File

@@ -20,11 +20,7 @@ import { DSOChangeAnalyzer } from '../data/dso-change-analyzer.service';
@Injectable()
export class WorkflowItemDataService extends DataService<WorkflowItem> {
protected linkPath = 'workflowitems';
<<<<<<< HEAD
protected responseMsToLive = 0;
=======
protected resetMsToLive = true;
>>>>>>> Setting cache period to zero for all instances where forceBypassCache was previously true.
constructor(
protected comparator: DSOChangeAnalyzer<WorkflowItem>,