1 parent ded06e5 commit cc722feCopy full SHA for cc722fe
2 files changed
src/dpq2/cancellation.d
@@ -83,7 +83,7 @@ class Cancellation
83
was already done processing the command), then there will be no
84
visible result at all.
85
*/
86
- void doCancel()
+ void doCancelBlocking()
87
{
88
auto res = PQcancelBlocking(cancelConn);
89
src/dpq2/connection.d
@@ -345,7 +345,7 @@ class Connection
345
void cancel()
346
347
auto c = new Cancellation(this);
348
- c.doCancel;
+ c.doCancelBlocking;
349
}
350
351
///
0 commit comments