MCPcopy Create free account
hub / github.com/aptabase/aptabase / IQueryClient

Interface IQueryClient

src/Features/Stats/IQueryClient.cs:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1namespace Aptabase.Features.Stats;
2
3public interface IQueryClient
4{
5 Task<IEnumerable<T>> NamedQueryAsync<T>(string name, object args, CancellationToken cancellationToken);
6 Task<T> NamedQuerySingleAsync<T>(string name, object args, CancellationToken cancellationToken) where T : new();
7 Task<Stream> StreamResponseAsync(string query, CancellationToken cancellationToken);
8}

Callers 1

DownloadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected