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 ac95a8b8d6
commit 0b6963aea1
5 changed files with 11 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ import { WorkspaceItem } from './models/workspaceitem.model';
@Injectable()
export class WorkspaceitemDataService extends DataService<WorkspaceItem> {
protected linkPath = 'workspaceitems';
protected resetMsToLive = true;
protected resetMsToLive = 0;
constructor(
protected comparator: DSOChangeAnalyzer<WorkspaceItem>,