StreamCallback

Callback type used by the streaming methods. Receives one fully-parsed NDJSON chunk per call; chunk["done"] is true on the final chunk.

@safe
alias StreamCallback = void delegate
(
JSONValue chunk
)
@safe

Meta