dataabstractions ILookupCacheT - RaidMax/IW4M-Admin GitHub Wiki
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
| Returns | Name |
|---|---|
Task<T> |
AddAsync(T item) |
Task<T> |
FirstAsync(Func<T, bool> query) |
IEnumerable<T> |
GetAll() |
Task |
InitializeAsync() |
public Task InitializeAsync()public Task<T> AddAsync(T item)| Type | Name | Description |
|---|---|---|
T |
item |
public Task<T> FirstAsync(Func<T, bool> query)| Type | Name | Description |
|---|---|---|
Func<T, bool> |
query |
public IEnumerable<T> GetAll()Generated with ModularDoc