Click or drag to resize
AsyncStatement Class
Extensions methods for IAsyncStatement.
Inheritance Hierarchy
SystemObject
  SQLitePCL.prettyAsyncStatement

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty.Async (in SQLitePCL.pretty.Async.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public static class AsyncStatement
Methods
  NameDescription
Public methodStatic memberExecuteAsync(IAsyncStatement, Object)
Executes the IStatement with provided bind parameter values.
Public methodStatic memberExecuteAsync(IAsyncStatement, CancellationToken, Object)
Executes the IStatement with provided bind parameter values.
Public methodStatic memberQuery(IAsyncStatement)
Queries the database asynchronously using the provided IStatement
Public methodStatic memberQuery(IAsyncStatement, Object)
Queries the database asynchronously using the provided IStatement and provided bind variables.
Public methodStatic memberUse(IAsyncStatement, ActionIStatement)
Schedules the Actionf on the statement's operations queue.
Public methodStatic memberUse(IAsyncStatement, ActionIStatement, CancellationToken, CancellationToken)
Schedules the Actionf on the statement's operations queue.
Public methodStatic memberUseT(IAsyncStatement, FuncIStatement, IEnumerableT)
Returns a cold IObservable which schedules the function f on the statement's database operation queue each time it is is subscribed to. The published values are generated by enumerating the IEnumerable returned by f.
Public methodStatic memberUseT(IAsyncStatement, FuncIStatement, T)
Schedules the FuncT, TResultf on the statement's operations queue.
Public methodStatic memberUseT(IAsyncStatement, FuncIStatement, CancellationToken, T, CancellationToken)
Schedules the FuncT, TResultf on the statement's operations queue.
Top
See Also