FiberRegistryType
PackageAxial
Tracks every live forked fiber so the whole runtime can be dumped as a parent/child tree at any moment.
Specification
Kind
Type
Members
6
Examples
0
``.ctor``Signature
FiberRegistry()
DumpSignature
this.Dump
DumpAtSignature
this.DumpAt
SnapshotSignature
this.Snapshot
ObserverSignature
this.Observer
Summary
| Name | Signature | Synopsis |
|---|---|---|
| ``.ctor`` | FiberRegistry() | No description available. |
| Dump | this.Dump | Renders the current live fibers as a human-readable parent/child tree, timestamped with the current UTC time. |
| DumpAt | this.DumpAt | Renders a snapshot of live fibers as a human-readable parent/child tree, timestamped at now. |
| Snapshot | this.Snapshot | Takes a structured dump of every live fiber, ordered by fiber id. |
| Observer | this.Observer | The lifecycle observer that feeds the registry. |
| LiveFiberCount | this.LiveFiberCount | The number of live fibers currently tracked. |
Renders the current live fibers as a human-readable parent/child tree, timestamped with the current UTC
time. This is a debugger/console convenience over a diagnostic render, not part of workflow execution or
any deterministic behavior a test would assert on; use
DumpAt when the timestamp itself matters
to a caller (for example, a test asserting on the rendered header).
Returns
string
Renders a snapshot of live fibers as a human-readable parent/child tree, timestamped at
now.Parameters
| Name | Type | Description |
|---|---|---|
| now | DateTimeOffset |
Returns
string
Takes a structured dump of every live fiber, ordered by fiber id.
Returns
FiberDump list
The lifecycle observer that feeds the registry. Compose it if installing observers manually.
Returns
FiberObserver

