mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-03 22:43:09 +00:00
18 lines
342 B
Nim
18 lines
342 B
Nim
|
|
import ../../waku_core
|
||
|
|
|
||
|
|
type DeliveryDirection* {.pure.} = enum
|
||
|
|
PUBLISHING
|
||
|
|
RECEIVING
|
||
|
|
|
||
|
|
type DeliverySuccess* {.pure.} = enum
|
||
|
|
SUCCESSFUL
|
||
|
|
UNSUCCESSFUL
|
||
|
|
|
||
|
|
type DeliveryFeedbackCallback* = proc(
|
||
|
|
success: DeliverySuccess,
|
||
|
|
dir: DeliveryDirection,
|
||
|
|
comment: string,
|
||
|
|
msgHash: WakuMessageHash,
|
||
|
|
msg: WakuMessage,
|
||
|
|
) {.gcsafe, raises: [].}
|