| 1006 | } |
| 1007 | |
| 1008 | void DLApi::stopNetwork() { |
| 1009 | if (networkSetup) { |
| 1010 | throwIfError(api->stopNetwork()); |
| 1011 | } |
| 1012 | } |
| 1013 | |
| 1014 | Reference<IDatabase> DLApi::createDatabase609(const char* clusterFilePath) { |
| 1015 | FdbCApi::FDBFuture* f = api->createCluster(clusterFilePath); |
nothing calls this directly
no test coverage detected