streamMultiStartAsync method
Async variant of streamMultiStartBatched. Combine with
streamPollAsync.
Implementation
Future<int> streamMultiStartAsync(
int connectionId,
String sql, {
int chunkSize = 64 * 1024,
}) async {
final r = await _sendRequest<IntResponse>(
StreamMultiStartAsyncRequest(
_nextRequestId(),
connectionId,
sql,
chunkSize: chunkSize,
),
);
return r.value;
}