Full system abstraction with filesystem and system service access.
Extends WrapperBasicSysAbstraction with filesystem and system services,
providing the complete system abstraction interface. Used in environments
with full system access (Node.js, Deno) where filesystem operations,
process management, and environment access are available.
Inherits all configurable services from WrapperBasicSysAbstraction (Time,
ID, Random) and adds FileSystem and SystemService access.
Example
// Created via runtime-specific factory constsys = NodeSysAbstraction({ TimeMode:TimeMode.REAL, IdMode:IDMode.UUID });
// Use basic services consttime = sys.Time(); constid = sys.NextId();
// Use filesystem constfs = sys.FileSystem(); constcontent = awaitfs.readFile('/path/to/file');
// Use system services constsystem = sys.System(); constenv = system.getEnv(); system.exit(0);
Full system abstraction with filesystem and system service access.
Extends WrapperBasicSysAbstraction with filesystem and system services, providing the complete system abstraction interface. Used in environments with full system access (Node.js, Deno) where filesystem operations, process management, and environment access are available.
Inherits all configurable services from WrapperBasicSysAbstraction (Time, ID, Random) and adds FileSystem and SystemService access.
Example