add arc/orc support

This commit is contained in:
Dmitriy Ryajov 2023-09-20 18:05:55 -06:00
parent 215d334400
commit 4cd74afd60
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ type
GetNext* = proc(): Future[?!QueryResponse] {.upraises: [], gcsafe.}
IterDispose* = proc(): Future[?!void] {.upraises: [], gcsafe.}
QueryIter* = ref object
QueryIter* {.acyclic.} = ref object
finished*: bool
next*: GetNext
dispose*: IterDispose

View File

@ -8,4 +8,4 @@ type
DatastoreKeyNotFound* = object of DatastoreError
QueryEndedError* = object of DatastoreError
Datastore* = ref object of RootObj
Datastore* {.acyclic.} = ref object of RootObj