poolCreate method
Creates a connection pool in the worker. Returns pool ID on success.
Implementation
Future<int> poolCreate(String connectionString, int maxSize) async {
final r = await _sendRequest<IntResponse>(
PoolCreateRequest(_nextRequestId(), connectionString, maxSize),
);
return r.value;
}