Skip to content

dataabstractions ILookupCacheT

RaidMax edited this page May 21, 2023 · 1 revision

ILookupCache< T> Public interface

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph Data.Abstractions
  Data.Abstractions.ILookupCache_1[[ILookupCache< T >]]
  class Data.Abstractions.ILookupCache_1 interfaceStyle;

  end
Loading

Members

Methods

Public methods

Returns Name
Task<T> AddAsync(T item)
Task<T> FirstAsync(Func<T, bool> query)
IEnumerable<T> GetAll()
Task InitializeAsync()

Details

Methods

InitializeAsync

Source code

public Task InitializeAsync()

AddAsync

Source code

public Task<T> AddAsync(T item)
Arguments
Type Name Description
T item

FirstAsync

public Task<T> FirstAsync(Func<T, bool> query)
Arguments
Type Name Description
Func<T, bool> query

GetAll

public IEnumerable<T> GetAll()

Generated with ModularDoc

Clone this wiki locally