Skip to main content
All docs
V26.1
  • ICachedDataStoreWarpServiceAsync Methods

    Extends the ICachedDataStoreServiceAsync interface with methods that asynchronously fetch data from a cached data store and compress the result.
    Name Description
    Do(String, Object) Defines a service operation that, when implemented by a class, executes a specified command with specific parameters and returns the operation result. Inherited from IDataStoreService.
    DoAsync(String, Object) Asynchronously executes a specified command with specific parameters and returns the operation result. Inherited from IDataStoreServiceAsync.
    GetAutoCreateOption() Defines a service operation that, when implemented by a class, returns which operations are performed when a data store is accessed for the first time. Inherited from IDataStoreService.
    GetAutoCreateOptionAsync() Asynchronously gets the AutoCreateOption setting used during the first connection to a data store. Inherited from IDataStoreServiceAsync.
    ModifyData(ModificationStatement[]) Defines a service operation that, when implemented by a class, updates data in a data store using specified modification statements and returns the operation result. Inherited from IDataStoreService.
    ModifyDataAsync(ModificationStatement[]) Uses specified modification statements to asynchronously update data in a data store. Inherited from IDataStoreServiceAsync.
    ModifyDataCached(DataCacheCookie, ModificationStatement[]) Defines a service operation that, when implemented by a class, updates data in a cached data store using specified modification statements and returns the operation result. Inherited from ICachedDataStoreService.
    ModifyDataCachedAsync(DataCacheCookie, ModificationStatement[]) Uses specified modification statements to asynchronously update data in a cached data store. Inherited from ICachedDataStoreServiceAsync.
    NotifyDirtyTables(DataCacheCookie, String[]) Defines a service operation that, when implemented by a class, informs a cached data store‘s Root element (DataCacheRoot or MSSql2005SqlDependencyCacheRoot) about specific modified tables. Inherited from ICachedDataStoreService.
    NotifyDirtyTablesAsync(DataCacheCookie, String[]) Asynchronously informs a cached data store‘s Root element (DataCacheRoot or MSSql2005SqlDependencyCacheRoot) about specific modified tables. Inherited from ICachedDataStoreServiceAsync.
    ProcessCookie(DataCacheCookie) Defines a service operation that, when implemented by a class, synchronizes table update information with a cached data store‘s Root element (DataCacheRoot or MSSql2005SqlDependencyCacheRoot). Inherited from ICachedDataStoreService.
    ProcessCookieAsync(DataCacheCookie) Synchronizes table update information asynchronously with a cached data store‘s Root element (DataCacheRoot or MSSql2005SqlDependencyCacheRoot). Inherited from ICachedDataStoreServiceAsync.
    SelectData(SelectStatement[]) Defines a service operation that, when implemented by a class, fetches data from a data store using specified query statements and returns the operation result. Inherited from IDataStoreService.
    SelectDataAsync(SelectStatement[]) Uses specified query statements to asynchronously fetch data from a data store. Inherited from IDataStoreServiceAsync.
    SelectDataCached(DataCacheCookie, SelectStatement[]) Defines a service operation that, when implemented by a class, fetches data from a cached data store using specified query statements and returns the operation result. Inherited from ICachedDataStoreService.
    SelectDataCachedAsync(DataCacheCookie, SelectStatement[]) Uses specified query statements to asynchronously fetch data from a cached data store. Inherited from ICachedDataStoreServiceAsync.
    UpdateSchema(Boolean, DBTable[]) Defines a service operation that, when implemented by a class, updates a data store’s schema according to specified settings and returns the operation result. Inherited from IDataStoreService.
    UpdateSchemaAsync(Boolean, DBTable[]) Asynchronously updates a data store’s schema according to specified settings. Inherited from IDataStoreServiceAsync.
    UpdateSchemaCached(DataCacheCookie, DBTable[], Boolean) Defines a service operation that, when implemented by a class, updates a cached data store‘s schema according to specified settings. Inherited from ICachedDataStoreService.
    UpdateSchemaCachedAsync(DataCacheCookie, DBTable[], Boolean) Asynchronously updates a cached data store‘s schema according to specified settings. Inherited from ICachedDataStoreServiceAsync.
    WarpSelectData(SelectStatement[]) Uses specified query statements to fetch data from a data store and compress the result. Inherited from IDataStoreWarpService.
    WarpSelectDataAsync(SelectStatement[]) Uses specified query statements to asynchronously fetch data from a data store and compress the result. Inherited from IDataStoreWarpServiceAsync.
    WarpSelectDataCachedAsync(DataCacheCookie, SelectStatement[]) Uses specified query statements to asynchronously fetch data from a cached data store and compress the result.
    See Also