C# Class SobekCM.Core.MemoryMgmt.CachedDataManager_BuilderServices

Builder-specific services for the Cached Data Manager, which allows items to be cached, or portions of items and REST reponses related to items to be cached
ファイルを表示 Open project: MarkVSullivan/SobekCM-Web-Application Class Usage Examples

Public Methods

Method Description
CachedDataManager_BuilderServices ( SobekCM.Core.MemoryMgmt.CachedDataManager_Settings Settings ) : System

Constructor for a new instance of the CachedDataManager_BuilderServices class.

Retrieve_Builder_Logs ( System.DateTime StartDate, System.DateTime EndDate, string BibVidFilter, bool IncludeNoWorkFlag, Custom_Tracer Tracer ) : DataSet

Retrieves the raw data list of recent builder logs (engine side)

Store_Builder_Logs ( DataSet StoreObject, System.DateTime StartDate, System.DateTime EndDate, string BibVidFilter, bool IncludeNoWorkFlag, Custom_Tracer Tracer ) : void

Stores the raw data list of builder logs (engine side)

Method Details

CachedDataManager_BuilderServices() public method

Constructor for a new instance of the CachedDataManager_BuilderServices class.
public CachedDataManager_BuilderServices ( SobekCM.Core.MemoryMgmt.CachedDataManager_Settings Settings ) : System
Settings SobekCM.Core.MemoryMgmt.CachedDataManager_Settings Cached data manager settings object
return System

Retrieve_Builder_Logs() public method

Retrieves the raw data list of recent builder logs (engine side)
public Retrieve_Builder_Logs ( System.DateTime StartDate, System.DateTime EndDate, string BibVidFilter, bool IncludeNoWorkFlag, Custom_Tracer Tracer ) : DataSet
StartDate System.DateTime Possibly the starting date for the log range
EndDate System.DateTime Possibly the ending date for the log range
BibVidFilter string Any search filter to see only particular BibID or BibID/VID
IncludeNoWorkFlag bool Flag indicates if 'No Work' entries should be included
Tracer SobekCM.Tools.Custom_Tracer Trace object keeps a list of each method executed and important milestones in rendering
return System.Data.DataSet

Store_Builder_Logs() public method

Stores the raw data list of builder logs (engine side)
public Store_Builder_Logs ( DataSet StoreObject, System.DateTime StartDate, System.DateTime EndDate, string BibVidFilter, bool IncludeNoWorkFlag, Custom_Tracer Tracer ) : void
StoreObject System.Data.DataSet Data set of all the recent updates
StartDate System.DateTime Possibly the starting date for the log range
EndDate System.DateTime Possibly the ending date for the log range
BibVidFilter string Any search filter to see only particular BibID or BibID/VID
IncludeNoWorkFlag bool Flag indicates if 'No Work' entries should be included
Tracer SobekCM.Tools.Custom_Tracer Trace object keeps a list of each method executed and important milestones in rendering
return void