'Declaration Public Overloads Sub Alter( _ ByVal tableName As String, _ ByVal filter As String, _ ByVal refreshInterval As Integer, _ ByVal intervalUnit As RefreshIntervalUnit, _ ByVal fullRefresh As Boolean _ )
public void Alter( string tableName, string filter, int refreshInterval, RefreshIntervalUnit intervalUnit, bool fullRefresh )
Parameters
- tableName
- The name of the table to alter cache settings for.
- filter
- The new filter value. Allows setting the condition the object must match to be stored in cache.
- refreshInterval
- The new refresh interval.
- intervalUnit
- The time unit, the refresh interval is set in.
- fullRefresh
- The refresh method to use for refreshing the cache for this table. true if full refresh method should be used (all objects, matching the filter if such is set, from thу specified table will be queried when performing cache refreshing); false if smart refresh method should be used (only objects that were created or modified since the last cache refreshing, will be queried when performing cache refreshing).