Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
type alias DispatchedFn
import { type DispatchedFn } from "https://deno.land/x/natsws@v1.28.0/src/nats-base-client.ts";

DispatcherFn allows for values to be processed after being presented to the iterator. Note that if the ProtocolFilter rejected the value it will not be presented to the DispatchedFn. Any processing should instead have been handled by the ProtocolFilterFn.

Type Parameters

optional
T = unknown
definition: (data: T | null) => void