Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/async_channels/src/internal/state_machine.ts>SendStuck

Inspired by Go & Clojure Channels, async_channels provides channels as an asynchronous communication method between asynchronous functions.
Latest
interface SendStuck
implements StateBase<T>
import { type SendStuck } from "https://deno.land/x/async_channels@v1.0.0-rc8/src/internal/state_machine.ts";

Properties

name: "SendStuck"
promise: Promise<T>
get: () => Idle<T>
send: (val: T) => never
close: () => Closed<T>
function SendStuck
import { SendStuck } from "https://deno.land/x/async_channels@v1.0.0-rc8/src/internal/state_machine.ts";