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 d449bd70a0
commit a50e568899
5 changed files with 11 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ import { DSOChangeAnalyzer } from '../data/dso-change-analyzer.service';
@Injectable()
export class WorkflowItemDataService extends DataService<WorkflowItem> {
protected linkPath = 'workflowitems';
protected resetMsToLive = true;
protected resetMsToLive = 0;
constructor(
protected comparator: DSOChangeAnalyzer<WorkflowItem>,