Hyperlinkv0.8.0-beta.28

TxQueue

TxQueue.TxQueueStateinterfaceeffect/TxQueue.ts:136
TxQueueState

Represents the shared state of a transactional queue that can be inspected. This interface contains the core properties needed for queue state inspection operations like size, capacity, and completion status.

models
Source effect/TxQueue.ts:1366 lines
export interface TxQueueState extends Inspectable {
  readonly strategy: "bounded" | "unbounded" | "dropping" | "sliding"
  readonly capacity: number
  readonly items: TxChunk.TxChunk<any>
  readonly stateRef: TxRef.TxRef<State<any, any>>
}
Referenced by 11 symbols