Skip to main content
Module

x/ddapps/interface.ts>IState

Deno distributed applications framework
Latest
interface IState
import { type IState } from "https://deno.land/x/ddapps@1.6.5/interface.ts";

Type Parameters

optional
ReqPayload extends IRequestPayload = IRequestPayload
optional
ResPayload extends IResponsePayload = IResponsePayload

Properties

ready: boolean
net: { requests: { [key: string]: string; }; ready: boolean; peers: DRemotePeerSet<ReqPayload, ResPayload, MPayload>; clients: DClientSet<ReqPayload, ResPayload>; }
log: { console: boolean; debug: boolean; exclude: (keyof MPayload)[]; last: number; }
mon: { requests: string[]; stats: { [key: string]: number; }; watchers: { [key: string]: { interval: number; expire: number; }; }; loggers: string[]; trace: { [key: string]: { notify: boolean; token: string; }; }; }
testing: { dummy: string; }