@typed/fx 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +14 -0
- package/.eslintcache +1 -0
- package/.eslintrc.cjs +60 -0
- package/.huskyrc +5 -0
- package/.lintstagedrc +5 -0
- package/.mocharc.json +6 -0
- package/.nvmrc +1 -0
- package/.pnpm-debug.log +20 -0
- package/.prettierrc.cjs +11 -0
- package/.tracing-plugin/plugin.cjs +100 -0
- package/.tracing-plugin/plugin.d.ts +10 -0
- package/.tracing-plugin/plugin.d.ts.map +1 -0
- package/.tracing-plugin/plugin.js.map +1 -0
- package/.tracing-plugin/vite.d.ts +10 -0
- package/.tracing-plugin/vite.d.ts.map +1 -0
- package/.tracing-plugin/vite.js +54 -0
- package/.tracing-plugin/vite.js.map +1 -0
- package/.vscode/settings.json +7 -0
- package/cjs/Atomic/Atomic.d.ts +56 -0
- package/cjs/Atomic/Atomic.d.ts.map +1 -0
- package/cjs/Atomic/Atomic.js +92 -0
- package/cjs/Atomic/Atomic.js.map +1 -0
- package/cjs/Atomic/AtomicCounter.d.ts +10 -0
- package/cjs/Atomic/AtomicCounter.d.ts.map +1 -0
- package/cjs/Atomic/AtomicCounter.js +14 -0
- package/cjs/Atomic/AtomicCounter.js.map +1 -0
- package/cjs/Atomic/index.d.ts +3 -0
- package/cjs/Atomic/index.d.ts.map +1 -0
- package/cjs/Atomic/index.js +19 -0
- package/cjs/Atomic/index.js.map +1 -0
- package/cjs/Cause/Cause.d.ts +169 -0
- package/cjs/Cause/Cause.d.ts.map +1 -0
- package/cjs/Cause/Cause.js +344 -0
- package/cjs/Cause/Cause.js.map +1 -0
- package/cjs/Cause/CauseError.d.ts +13 -0
- package/cjs/Cause/CauseError.d.ts.map +1 -0
- package/cjs/Cause/CauseError.js +73 -0
- package/cjs/Cause/CauseError.js.map +1 -0
- package/cjs/Cause/Renderer.d.ts +47 -0
- package/cjs/Cause/Renderer.d.ts.map +1 -0
- package/cjs/Cause/Renderer.js +235 -0
- package/cjs/Cause/Renderer.js.map +1 -0
- package/cjs/Cause/index.d.ts +2 -0
- package/cjs/Cause/index.d.ts.map +1 -0
- package/cjs/Cause/index.js +18 -0
- package/cjs/Cause/index.js.map +1 -0
- package/cjs/Cause/prettyStringify.d.ts +2 -0
- package/cjs/Cause/prettyStringify.d.ts.map +1 -0
- package/cjs/Cause/prettyStringify.js +11 -0
- package/cjs/Cause/prettyStringify.js.map +1 -0
- package/cjs/Clock/Clock.d.ts +26 -0
- package/cjs/Clock/Clock.d.ts.map +1 -0
- package/cjs/Clock/Clock.js +87 -0
- package/cjs/Clock/Clock.js.map +1 -0
- package/cjs/Clock/DateClock.d.ts +3 -0
- package/cjs/Clock/DateClock.d.ts.map +1 -0
- package/cjs/Clock/DateClock.js +11 -0
- package/cjs/Clock/DateClock.js.map +1 -0
- package/cjs/Clock/TestClock.d.ts +11 -0
- package/cjs/Clock/TestClock.d.ts.map +1 -0
- package/cjs/Clock/TestClock.js +19 -0
- package/cjs/Clock/TestClock.js.map +1 -0
- package/cjs/Clock/index.d.ts +4 -0
- package/cjs/Clock/index.d.ts.map +1 -0
- package/cjs/Clock/index.js +20 -0
- package/cjs/Clock/index.js.map +1 -0
- package/cjs/Disposable/Disposable.d.ts +25 -0
- package/cjs/Disposable/Disposable.d.ts.map +1 -0
- package/cjs/Disposable/Disposable.js +46 -0
- package/cjs/Disposable/Disposable.js.map +1 -0
- package/cjs/Disposable/index.d.ts +2 -0
- package/cjs/Disposable/index.d.ts.map +1 -0
- package/cjs/Disposable/index.js +18 -0
- package/cjs/Disposable/index.js.map +1 -0
- package/cjs/Duration/Duration.d.ts +27 -0
- package/cjs/Duration/Duration.d.ts.map +1 -0
- package/cjs/Duration/Duration.js +119 -0
- package/cjs/Duration/Duration.js.map +1 -0
- package/cjs/Duration/index.d.ts +2 -0
- package/cjs/Duration/index.d.ts.map +1 -0
- package/cjs/Duration/index.js +18 -0
- package/cjs/Duration/index.js.map +1 -0
- package/cjs/Env/Env.d.ts +8 -0
- package/cjs/Env/Env.d.ts.map +1 -0
- package/cjs/Env/Env.js +64 -0
- package/cjs/Env/Env.js.map +1 -0
- package/cjs/Env/index.d.ts +2 -0
- package/cjs/Env/index.d.ts.map +1 -0
- package/cjs/Env/index.js +18 -0
- package/cjs/Env/index.js.map +1 -0
- package/cjs/Exit/Exit.d.ts +21 -0
- package/cjs/Exit/Exit.d.ts.map +1 -0
- package/cjs/Exit/Exit.js +54 -0
- package/cjs/Exit/Exit.js.map +1 -0
- package/cjs/Exit/hkt.d.ts +17 -0
- package/cjs/Exit/hkt.d.ts.map +1 -0
- package/cjs/Exit/hkt.js +45 -0
- package/cjs/Exit/hkt.js.map +1 -0
- package/cjs/Exit/index.d.ts +3 -0
- package/cjs/Exit/index.d.ts.map +1 -0
- package/cjs/Exit/index.js +19 -0
- package/cjs/Exit/index.js.map +1 -0
- package/cjs/Fiber/Fiber.d.ts +36 -0
- package/cjs/Fiber/Fiber.d.ts.map +1 -0
- package/cjs/Fiber/Fiber.js +36 -0
- package/cjs/Fiber/Fiber.js.map +1 -0
- package/cjs/Fiber/index.d.ts +2 -0
- package/cjs/Fiber/index.d.ts.map +1 -0
- package/cjs/Fiber/index.js +18 -0
- package/cjs/Fiber/index.js.map +1 -0
- package/cjs/FiberContext/FiberContext.d.ts +22 -0
- package/cjs/FiberContext/FiberContext.d.ts.map +1 -0
- package/cjs/FiberContext/FiberContext.js +64 -0
- package/cjs/FiberContext/FiberContext.js.map +1 -0
- package/cjs/FiberContext/index.d.ts +2 -0
- package/cjs/FiberContext/index.d.ts.map +1 -0
- package/cjs/FiberContext/index.js +18 -0
- package/cjs/FiberContext/index.js.map +1 -0
- package/cjs/FiberId/FiberId.d.ts +46 -0
- package/cjs/FiberId/FiberId.d.ts.map +1 -0
- package/cjs/FiberId/FiberId.js +122 -0
- package/cjs/FiberId/FiberId.js.map +1 -0
- package/cjs/FiberId/index.d.ts +2 -0
- package/cjs/FiberId/index.d.ts.map +1 -0
- package/cjs/FiberId/index.js +18 -0
- package/cjs/FiberId/index.js.map +1 -0
- package/cjs/FiberRef/FiberRef.d.ts +38 -0
- package/cjs/FiberRef/FiberRef.d.ts.map +1 -0
- package/cjs/FiberRef/FiberRef.js +57 -0
- package/cjs/FiberRef/FiberRef.js.map +1 -0
- package/cjs/FiberRef/index.d.ts +3 -0
- package/cjs/FiberRef/index.d.ts.map +1 -0
- package/cjs/FiberRef/index.js +20 -0
- package/cjs/FiberRef/index.js.map +1 -0
- package/cjs/FiberRef/operations.d.ts +9 -0
- package/cjs/FiberRef/operations.d.ts.map +1 -0
- package/cjs/FiberRef/operations.js +20 -0
- package/cjs/FiberRef/operations.js.map +1 -0
- package/cjs/FiberRefs/FiberRefs.d.ts +19 -0
- package/cjs/FiberRefs/FiberRefs.d.ts.map +1 -0
- package/cjs/FiberRefs/FiberRefs.js +130 -0
- package/cjs/FiberRefs/FiberRefs.js.map +1 -0
- package/cjs/FiberRefs/index.d.ts +2 -0
- package/cjs/FiberRefs/index.d.ts.map +1 -0
- package/cjs/FiberRefs/index.js +18 -0
- package/cjs/FiberRefs/index.js.map +1 -0
- package/cjs/FiberRuntime/FiberRuntime.d.ts +154 -0
- package/cjs/FiberRuntime/FiberRuntime.d.ts.map +1 -0
- package/cjs/FiberRuntime/FiberRuntime.js +506 -0
- package/cjs/FiberRuntime/FiberRuntime.js.map +1 -0
- package/cjs/FiberRuntime/Frame.d.ts +14 -0
- package/cjs/FiberRuntime/Frame.d.ts.map +1 -0
- package/cjs/FiberRuntime/Frame.js +18 -0
- package/cjs/FiberRuntime/Frame.js.map +1 -0
- package/cjs/FiberRuntime/index.d.ts +2 -0
- package/cjs/FiberRuntime/index.d.ts.map +1 -0
- package/cjs/FiberRuntime/index.js +18 -0
- package/cjs/FiberRuntime/index.js.map +1 -0
- package/cjs/FiberStatus/index.d.ts +19 -0
- package/cjs/FiberStatus/index.d.ts.map +1 -0
- package/cjs/FiberStatus/index.js +24 -0
- package/cjs/FiberStatus/index.js.map +1 -0
- package/cjs/Finalizer/Finalizer.d.ts +39 -0
- package/cjs/Finalizer/Finalizer.d.ts.map +1 -0
- package/cjs/Finalizer/Finalizer.js +24 -0
- package/cjs/Finalizer/Finalizer.js.map +1 -0
- package/cjs/Finalizer/index.d.ts +2 -0
- package/cjs/Finalizer/index.d.ts.map +1 -0
- package/cjs/Finalizer/index.js +18 -0
- package/cjs/Finalizer/index.js.map +1 -0
- package/cjs/Future/Future.d.ts +23 -0
- package/cjs/Future/Future.d.ts.map +1 -0
- package/cjs/Future/Future.js +42 -0
- package/cjs/Future/Future.js.map +1 -0
- package/cjs/Future/MutableFutureQueue.d.ts +16 -0
- package/cjs/Future/MutableFutureQueue.d.ts.map +1 -0
- package/cjs/Future/MutableFutureQueue.js +40 -0
- package/cjs/Future/MutableFutureQueue.js.map +1 -0
- package/cjs/Future/complete.d.ts +4 -0
- package/cjs/Future/complete.d.ts.map +1 -0
- package/cjs/Future/complete.js +14 -0
- package/cjs/Future/complete.js.map +1 -0
- package/cjs/Future/index.d.ts +4 -0
- package/cjs/Future/index.d.ts.map +1 -0
- package/cjs/Future/index.js +20 -0
- package/cjs/Future/index.js.map +1 -0
- package/cjs/Future/wait.d.ts +4 -0
- package/cjs/Future/wait.d.ts.map +1 -0
- package/cjs/Future/wait.js +9 -0
- package/cjs/Future/wait.js.map +1 -0
- package/cjs/Fx/Fx.d.ts +136 -0
- package/cjs/Fx/Fx.d.ts.map +1 -0
- package/cjs/Fx/Fx.js +247 -0
- package/cjs/Fx/Fx.js.map +1 -0
- package/cjs/Fx/Instruction.d.ts +202 -0
- package/cjs/Fx/Instruction.d.ts.map +1 -0
- package/cjs/Fx/Instruction.js +387 -0
- package/cjs/Fx/Instruction.js.map +1 -0
- package/cjs/Fx/index.d.ts +5 -0
- package/cjs/Fx/index.d.ts.map +1 -0
- package/cjs/Fx/index.js +21 -0
- package/cjs/Fx/index.js.map +1 -0
- package/cjs/Fx/join.d.ts +4 -0
- package/cjs/Fx/join.d.ts.map +1 -0
- package/cjs/Fx/join.js +39 -0
- package/cjs/Fx/join.js.map +1 -0
- package/cjs/Fx/logging.d.ts +11 -0
- package/cjs/Fx/logging.d.ts.map +1 -0
- package/cjs/Fx/logging.js +45 -0
- package/cjs/Fx/logging.js.map +1 -0
- package/cjs/Fx/scoped.d.ts +20 -0
- package/cjs/Fx/scoped.d.ts.map +1 -0
- package/cjs/Fx/scoped.js +52 -0
- package/cjs/Fx/scoped.js.map +1 -0
- package/cjs/ImmutableMap/ImmutableMap.d.ts +15 -0
- package/cjs/ImmutableMap/ImmutableMap.d.ts.map +1 -0
- package/cjs/ImmutableMap/ImmutableMap.js +39 -0
- package/cjs/ImmutableMap/ImmutableMap.js.map +1 -0
- package/cjs/ImmutableMap/index.d.ts +2 -0
- package/cjs/ImmutableMap/index.d.ts.map +1 -0
- package/cjs/ImmutableMap/index.js +18 -0
- package/cjs/ImmutableMap/index.js.map +1 -0
- package/cjs/Layer/Layer.d.ts +14 -0
- package/cjs/Layer/Layer.d.ts.map +1 -0
- package/cjs/Layer/Layer.js +42 -0
- package/cjs/Layer/Layer.js.map +1 -0
- package/cjs/Layer/index.d.ts +2 -0
- package/cjs/Layer/index.d.ts.map +1 -0
- package/cjs/Layer/index.js +18 -0
- package/cjs/Layer/index.js.map +1 -0
- package/cjs/Logger/Console.d.ts +3 -0
- package/cjs/Logger/Console.d.ts.map +1 -0
- package/cjs/Logger/Console.js +75 -0
- package/cjs/Logger/Console.js.map +1 -0
- package/cjs/Logger/LogAnnotation.d.ts +6 -0
- package/cjs/Logger/LogAnnotation.d.ts.map +1 -0
- package/cjs/Logger/LogAnnotation.js +8 -0
- package/cjs/Logger/LogAnnotation.js.map +1 -0
- package/cjs/Logger/LogLevel.d.ts +11 -0
- package/cjs/Logger/LogLevel.d.ts.map +1 -0
- package/cjs/Logger/LogLevel.js +15 -0
- package/cjs/Logger/LogLevel.js.map +1 -0
- package/cjs/Logger/LogSpan.d.ts +7 -0
- package/cjs/Logger/LogSpan.d.ts.map +1 -0
- package/cjs/Logger/LogSpan.js +8 -0
- package/cjs/Logger/LogSpan.js.map +1 -0
- package/cjs/Logger/Logger.d.ts +31 -0
- package/cjs/Logger/Logger.d.ts.map +1 -0
- package/cjs/Logger/Logger.js +66 -0
- package/cjs/Logger/Logger.js.map +1 -0
- package/cjs/Logger/index.d.ts +2 -0
- package/cjs/Logger/index.d.ts.map +1 -0
- package/cjs/Logger/index.js +18 -0
- package/cjs/Logger/index.js.map +1 -0
- package/cjs/Platform/Platform.d.ts +14 -0
- package/cjs/Platform/Platform.d.ts.map +1 -0
- package/cjs/Platform/Platform.js +47 -0
- package/cjs/Platform/Platform.js.map +1 -0
- package/cjs/Platform/TestPlatform.d.ts +7 -0
- package/cjs/Platform/TestPlatform.d.ts.map +1 -0
- package/cjs/Platform/TestPlatform.js +13 -0
- package/cjs/Platform/TestPlatform.js.map +1 -0
- package/cjs/Platform/index.d.ts +3 -0
- package/cjs/Platform/index.d.ts.map +1 -0
- package/cjs/Platform/index.js +19 -0
- package/cjs/Platform/index.js.map +1 -0
- package/cjs/Ref/Ref.d.ts +40 -0
- package/cjs/Ref/Ref.d.ts.map +1 -0
- package/cjs/Ref/Ref.js +57 -0
- package/cjs/Ref/Ref.js.map +1 -0
- package/cjs/Ref/atomic.d.ts +5 -0
- package/cjs/Ref/atomic.d.ts.map +1 -0
- package/cjs/Ref/atomic.js +20 -0
- package/cjs/Ref/atomic.js.map +1 -0
- package/cjs/Ref/index.d.ts +3 -0
- package/cjs/Ref/index.d.ts.map +1 -0
- package/cjs/Ref/index.js +19 -0
- package/cjs/Ref/index.js.map +1 -0
- package/cjs/Schedule/Decision.d.ts +15 -0
- package/cjs/Schedule/Decision.d.ts.map +1 -0
- package/cjs/Schedule/Decision.js +38 -0
- package/cjs/Schedule/Decision.js.map +1 -0
- package/cjs/Schedule/Schedule.d.ts +30 -0
- package/cjs/Schedule/Schedule.d.ts.map +1 -0
- package/cjs/Schedule/Schedule.js +78 -0
- package/cjs/Schedule/Schedule.js.map +1 -0
- package/cjs/Schedule/ScheduleState.d.ts +45 -0
- package/cjs/Schedule/ScheduleState.d.ts.map +1 -0
- package/cjs/Schedule/ScheduleState.js +58 -0
- package/cjs/Schedule/ScheduleState.js.map +1 -0
- package/cjs/Schedule/index.d.ts +4 -0
- package/cjs/Schedule/index.d.ts.map +1 -0
- package/cjs/Schedule/index.js +20 -0
- package/cjs/Schedule/index.js.map +1 -0
- package/cjs/Scheduler/RootScheduler.d.ts +4 -0
- package/cjs/Scheduler/RootScheduler.d.ts.map +1 -0
- package/cjs/Scheduler/RootScheduler.js +57 -0
- package/cjs/Scheduler/RootScheduler.js.map +1 -0
- package/cjs/Scheduler/Scheduler.d.ts +14 -0
- package/cjs/Scheduler/Scheduler.d.ts.map +1 -0
- package/cjs/Scheduler/Scheduler.js +6 -0
- package/cjs/Scheduler/Scheduler.js.map +1 -0
- package/cjs/Scheduler/callbackScheduler.d.ts +5 -0
- package/cjs/Scheduler/callbackScheduler.d.ts.map +1 -0
- package/cjs/Scheduler/callbackScheduler.js +59 -0
- package/cjs/Scheduler/callbackScheduler.js.map +1 -0
- package/cjs/Scheduler/index.d.ts +1 -0
- package/cjs/Scheduler/index.d.ts.map +1 -0
- package/cjs/Scheduler/index.js +2 -0
- package/cjs/Scheduler/index.js.map +1 -0
- package/cjs/Scheduler/scheduled.d.ts +10 -0
- package/cjs/Scheduler/scheduled.d.ts.map +1 -0
- package/cjs/Scheduler/scheduled.js +25 -0
- package/cjs/Scheduler/scheduled.js.map +1 -0
- package/cjs/Scope/Closeable.d.ts +11 -0
- package/cjs/Scope/Closeable.d.ts.map +1 -0
- package/cjs/Scope/Closeable.js +25 -0
- package/cjs/Scope/Closeable.js.map +1 -0
- package/cjs/Scope/GlobalScope.d.ts +3 -0
- package/cjs/Scope/GlobalScope.d.ts.map +1 -0
- package/cjs/Scope/GlobalScope.js +15 -0
- package/cjs/Scope/GlobalScope.js.map +1 -0
- package/cjs/Scope/LocalScope.d.ts +24 -0
- package/cjs/Scope/LocalScope.d.ts.map +1 -0
- package/cjs/Scope/LocalScope.js +97 -0
- package/cjs/Scope/LocalScope.js.map +1 -0
- package/cjs/Scope/ReleaseMap.d.ts +19 -0
- package/cjs/Scope/ReleaseMap.d.ts.map +1 -0
- package/cjs/Scope/ReleaseMap.js +66 -0
- package/cjs/Scope/ReleaseMap.js.map +1 -0
- package/cjs/Scope/Scope.d.ts +11 -0
- package/cjs/Scope/Scope.d.ts.map +1 -0
- package/cjs/Scope/Scope.js +6 -0
- package/cjs/Scope/Scope.js.map +1 -0
- package/cjs/Scope/ScopeState.d.ts +19 -0
- package/cjs/Scope/ScopeState.d.ts.map +1 -0
- package/cjs/Scope/ScopeState.js +30 -0
- package/cjs/Scope/ScopeState.js.map +1 -0
- package/cjs/Scope/index.d.ts +7 -0
- package/cjs/Scope/index.d.ts.map +1 -0
- package/cjs/Scope/index.js +23 -0
- package/cjs/Scope/index.js.map +1 -0
- package/cjs/Semaphore/Semaphore.d.ts +38 -0
- package/cjs/Semaphore/Semaphore.d.ts.map +1 -0
- package/cjs/Semaphore/Semaphore.js +96 -0
- package/cjs/Semaphore/Semaphore.js.map +1 -0
- package/cjs/Semaphore/index.d.ts +2 -0
- package/cjs/Semaphore/index.d.ts.map +1 -0
- package/cjs/Semaphore/index.js +18 -0
- package/cjs/Semaphore/index.js.map +1 -0
- package/cjs/Service/Id.d.ts +59 -0
- package/cjs/Service/Id.d.ts.map +1 -0
- package/cjs/Service/Id.js +90 -0
- package/cjs/Service/Id.js.map +1 -0
- package/cjs/Service/Service.d.ts +20 -0
- package/cjs/Service/Service.d.ts.map +1 -0
- package/cjs/Service/Service.js +19 -0
- package/cjs/Service/Service.js.map +1 -0
- package/cjs/Service/index.d.ts +4 -0
- package/cjs/Service/index.d.ts.map +1 -0
- package/cjs/Service/index.js +20 -0
- package/cjs/Service/index.js.map +1 -0
- package/cjs/Service/tagged.d.ts +23 -0
- package/cjs/Service/tagged.d.ts.map +1 -0
- package/cjs/Service/tagged.js +13 -0
- package/cjs/Service/tagged.js.map +1 -0
- package/cjs/Sink/Sink.d.ts +22 -0
- package/cjs/Sink/Sink.d.ts.map +1 -0
- package/cjs/Sink/Sink.js +31 -0
- package/cjs/Sink/Sink.js.map +1 -0
- package/cjs/Sink/index.d.ts +1 -0
- package/cjs/Sink/index.d.ts.map +1 -0
- package/cjs/Sink/index.js +2 -0
- package/cjs/Sink/index.js.map +1 -0
- package/cjs/Stack/index.d.ts +20 -0
- package/cjs/Stack/index.d.ts.map +1 -0
- package/cjs/Stack/index.js +103 -0
- package/cjs/Stack/index.js.map +1 -0
- package/cjs/StackFrame/StackFrame.d.ts +29 -0
- package/cjs/StackFrame/StackFrame.d.ts.map +1 -0
- package/cjs/StackFrame/StackFrame.js +61 -0
- package/cjs/StackFrame/StackFrame.js.map +1 -0
- package/cjs/StackFrame/getStackFrames.d.ts +7 -0
- package/cjs/StackFrame/getStackFrames.d.ts.map +1 -0
- package/cjs/StackFrame/getStackFrames.js +56 -0
- package/cjs/StackFrame/getStackFrames.js.map +1 -0
- package/cjs/StackFrame/index.d.ts +3 -0
- package/cjs/StackFrame/index.d.ts.map +1 -0
- package/cjs/StackFrame/index.js +19 -0
- package/cjs/StackFrame/index.js.map +1 -0
- package/cjs/StackFrame/parseChromeStack.d.ts +3 -0
- package/cjs/StackFrame/parseChromeStack.d.ts.map +1 -0
- package/cjs/StackFrame/parseChromeStack.js +36 -0
- package/cjs/StackFrame/parseChromeStack.js.map +1 -0
- package/cjs/StackFrame/parseGeckoStackFrame.d.ts +3 -0
- package/cjs/StackFrame/parseGeckoStackFrame.d.ts.map +1 -0
- package/cjs/StackFrame/parseGeckoStackFrame.js +28 -0
- package/cjs/StackFrame/parseGeckoStackFrame.js.map +1 -0
- package/cjs/Stream/Stream.d.ts +18 -0
- package/cjs/Stream/Stream.d.ts.map +1 -0
- package/cjs/Stream/Stream.js +8 -0
- package/cjs/Stream/Stream.js.map +1 -0
- package/cjs/Stream/drain.d.ts +11 -0
- package/cjs/Stream/drain.d.ts.map +1 -0
- package/cjs/Stream/drain.js +51 -0
- package/cjs/Stream/drain.js.map +1 -0
- package/cjs/Stream/fromFx.d.ts +4 -0
- package/cjs/Stream/fromFx.d.ts.map +1 -0
- package/cjs/Stream/fromFx.js +34 -0
- package/cjs/Stream/fromFx.js.map +1 -0
- package/cjs/Stream/index.d.ts +4 -0
- package/cjs/Stream/index.d.ts.map +1 -0
- package/cjs/Stream/index.js +20 -0
- package/cjs/Stream/index.js.map +1 -0
- package/cjs/Supervisor/Supervisor.d.ts +32 -0
- package/cjs/Supervisor/Supervisor.d.ts.map +1 -0
- package/cjs/Supervisor/Supervisor.js +46 -0
- package/cjs/Supervisor/Supervisor.js.map +1 -0
- package/cjs/Supervisor/index.d.ts +2 -0
- package/cjs/Supervisor/index.d.ts.map +1 -0
- package/cjs/Supervisor/index.js +18 -0
- package/cjs/Supervisor/index.js.map +1 -0
- package/cjs/Tagged/index.d.ts +79 -0
- package/cjs/Tagged/index.d.ts.map +1 -0
- package/cjs/Tagged/index.js +71 -0
- package/cjs/Tagged/index.js.map +1 -0
- package/cjs/Time/index.d.ts +95 -0
- package/cjs/Time/index.d.ts.map +1 -0
- package/cjs/Time/index.js +59 -0
- package/cjs/Time/index.js.map +1 -0
- package/cjs/Timeline/index.d.ts +27 -0
- package/cjs/Timeline/index.d.ts.map +1 -0
- package/cjs/Timeline/index.js +102 -0
- package/cjs/Timeline/index.js.map +1 -0
- package/cjs/Timer/SetTimeoutTimer.d.ts +4 -0
- package/cjs/Timer/SetTimeoutTimer.d.ts.map +1 -0
- package/cjs/Timer/SetTimeoutTimer.js +18 -0
- package/cjs/Timer/SetTimeoutTimer.js.map +1 -0
- package/cjs/Timer/TestTimer.d.ts +9 -0
- package/cjs/Timer/TestTimer.d.ts.map +1 -0
- package/cjs/Timer/TestTimer.js +52 -0
- package/cjs/Timer/TestTimer.js.map +1 -0
- package/cjs/Timer/Timer.d.ts +11 -0
- package/cjs/Timer/Timer.d.ts.map +1 -0
- package/cjs/Timer/Timer.js +44 -0
- package/cjs/Timer/Timer.js.map +1 -0
- package/cjs/Timer/index.d.ts +4 -0
- package/cjs/Timer/index.d.ts.map +1 -0
- package/cjs/Timer/index.js +20 -0
- package/cjs/Timer/index.js.map +1 -0
- package/cjs/Trace/Trace.d.ts +38 -0
- package/cjs/Trace/Trace.d.ts.map +1 -0
- package/cjs/Trace/Trace.js +183 -0
- package/cjs/Trace/Trace.js.map +1 -0
- package/cjs/Trace/index.d.ts +2 -0
- package/cjs/Trace/index.d.ts.map +1 -0
- package/cjs/Trace/index.js +18 -0
- package/cjs/Trace/index.js.map +1 -0
- package/cjs/Tracing/plugin.d.ts +10 -0
- package/cjs/Tracing/plugin.d.ts.map +1 -0
- package/cjs/Tracing/plugin.js +100 -0
- package/cjs/Tracing/plugin.js.map +1 -0
- package/cjs/Tracing/vite.d.ts +10 -0
- package/cjs/Tracing/vite.d.ts.map +1 -0
- package/cjs/Tracing/vite.js +54 -0
- package/cjs/Tracing/vite.js.map +1 -0
- package/cjs/index.d.ts +35 -0
- package/cjs/index.d.ts.map +1 -0
- package/cjs/index.js +64 -0
- package/cjs/index.js.map +1 -0
- package/cjs/internal.d.ts +18 -0
- package/cjs/internal.d.ts.map +1 -0
- package/cjs/internal.js +3 -0
- package/cjs/internal.js.map +1 -0
- package/cjs/test.d.ts +1 -0
- package/cjs/test.d.ts.map +1 -0
- package/cjs/test.js +2 -0
- package/cjs/test.js.map +1 -0
- package/coverage/tmp/coverage-74826-1660784295157-0.json +1 -0
- package/coverage/tmp/coverage-74830-1660784295115-0.json +1 -0
- package/coverage/tmp/coverage-74836-1660784295074-0.json +1 -0
- package/esm/Atomic/Atomic.d.ts +56 -0
- package/esm/Atomic/Atomic.d.ts.map +1 -0
- package/esm/Atomic/Atomic.js +79 -0
- package/esm/Atomic/Atomic.js.map +1 -0
- package/esm/Atomic/AtomicCounter.d.ts +10 -0
- package/esm/Atomic/AtomicCounter.d.ts.map +1 -0
- package/esm/Atomic/AtomicCounter.js +10 -0
- package/esm/Atomic/AtomicCounter.js.map +1 -0
- package/esm/Atomic/index.d.ts +3 -0
- package/esm/Atomic/index.d.ts.map +1 -0
- package/esm/Atomic/index.js +3 -0
- package/esm/Atomic/index.js.map +1 -0
- package/esm/Cause/Cause.d.ts +169 -0
- package/esm/Cause/Cause.d.ts.map +1 -0
- package/esm/Cause/Cause.js +296 -0
- package/esm/Cause/Cause.js.map +1 -0
- package/esm/Cause/CauseError.d.ts +13 -0
- package/esm/Cause/CauseError.d.ts.map +1 -0
- package/esm/Cause/CauseError.js +44 -0
- package/esm/Cause/CauseError.js.map +1 -0
- package/esm/Cause/Renderer.d.ts +47 -0
- package/esm/Cause/Renderer.d.ts.map +1 -0
- package/esm/Cause/Renderer.js +191 -0
- package/esm/Cause/Renderer.js.map +1 -0
- package/esm/Cause/index.d.ts +2 -0
- package/esm/Cause/index.d.ts.map +1 -0
- package/esm/Cause/index.js +2 -0
- package/esm/Cause/index.js.map +1 -0
- package/esm/Cause/prettyStringify.d.ts +2 -0
- package/esm/Cause/prettyStringify.d.ts.map +1 -0
- package/esm/Cause/prettyStringify.js +7 -0
- package/esm/Cause/prettyStringify.js.map +1 -0
- package/esm/Clock/Clock.d.ts +26 -0
- package/esm/Clock/Clock.d.ts.map +1 -0
- package/esm/Clock/Clock.js +50 -0
- package/esm/Clock/Clock.js.map +1 -0
- package/esm/Clock/DateClock.d.ts +3 -0
- package/esm/Clock/DateClock.d.ts.map +1 -0
- package/esm/Clock/DateClock.js +7 -0
- package/esm/Clock/DateClock.js.map +1 -0
- package/esm/Clock/TestClock.d.ts +11 -0
- package/esm/Clock/TestClock.d.ts.map +1 -0
- package/esm/Clock/TestClock.js +15 -0
- package/esm/Clock/TestClock.js.map +1 -0
- package/esm/Clock/index.d.ts +4 -0
- package/esm/Clock/index.d.ts.map +1 -0
- package/esm/Clock/index.js +4 -0
- package/esm/Clock/index.js.map +1 -0
- package/esm/Disposable/Disposable.d.ts +25 -0
- package/esm/Disposable/Disposable.d.ts.map +1 -0
- package/esm/Disposable/Disposable.js +39 -0
- package/esm/Disposable/Disposable.js.map +1 -0
- package/esm/Disposable/index.d.ts +2 -0
- package/esm/Disposable/index.d.ts.map +1 -0
- package/esm/Disposable/index.js +2 -0
- package/esm/Disposable/index.js.map +1 -0
- package/esm/Duration/Duration.d.ts +27 -0
- package/esm/Duration/Duration.d.ts.map +1 -0
- package/esm/Duration/Duration.js +106 -0
- package/esm/Duration/Duration.js.map +1 -0
- package/esm/Duration/index.d.ts +2 -0
- package/esm/Duration/index.d.ts.map +1 -0
- package/esm/Duration/index.js +2 -0
- package/esm/Duration/index.js.map +1 -0
- package/esm/Env/Env.d.ts +8 -0
- package/esm/Env/Env.d.ts.map +1 -0
- package/esm/Env/Env.js +37 -0
- package/esm/Env/Env.js.map +1 -0
- package/esm/Env/index.d.ts +2 -0
- package/esm/Env/index.d.ts.map +1 -0
- package/esm/Env/index.js +2 -0
- package/esm/Env/index.js.map +1 -0
- package/esm/Exit/Exit.d.ts +21 -0
- package/esm/Exit/Exit.d.ts.map +1 -0
- package/esm/Exit/Exit.js +16 -0
- package/esm/Exit/Exit.js.map +1 -0
- package/esm/Exit/hkt.d.ts +17 -0
- package/esm/Exit/hkt.d.ts.map +1 -0
- package/esm/Exit/hkt.js +19 -0
- package/esm/Exit/hkt.js.map +1 -0
- package/esm/Exit/index.d.ts +3 -0
- package/esm/Exit/index.d.ts.map +1 -0
- package/esm/Exit/index.js +3 -0
- package/esm/Exit/index.js.map +1 -0
- package/esm/Fiber/Fiber.d.ts +36 -0
- package/esm/Fiber/Fiber.d.ts.map +1 -0
- package/esm/Fiber/Fiber.js +25 -0
- package/esm/Fiber/Fiber.js.map +1 -0
- package/esm/Fiber/index.d.ts +2 -0
- package/esm/Fiber/index.d.ts.map +1 -0
- package/esm/Fiber/index.js +2 -0
- package/esm/Fiber/index.js.map +1 -0
- package/esm/FiberContext/FiberContext.d.ts +22 -0
- package/esm/FiberContext/FiberContext.d.ts.map +1 -0
- package/esm/FiberContext/FiberContext.js +36 -0
- package/esm/FiberContext/FiberContext.js.map +1 -0
- package/esm/FiberContext/index.d.ts +2 -0
- package/esm/FiberContext/index.d.ts.map +1 -0
- package/esm/FiberContext/index.js +2 -0
- package/esm/FiberContext/index.js.map +1 -0
- package/esm/FiberId/FiberId.d.ts +46 -0
- package/esm/FiberId/FiberId.d.ts.map +1 -0
- package/esm/FiberId/FiberId.js +93 -0
- package/esm/FiberId/FiberId.js.map +1 -0
- package/esm/FiberId/index.d.ts +2 -0
- package/esm/FiberId/index.d.ts.map +1 -0
- package/esm/FiberId/index.js +2 -0
- package/esm/FiberId/index.js.map +1 -0
- package/esm/FiberRef/FiberRef.d.ts +38 -0
- package/esm/FiberRef/FiberRef.d.ts.map +1 -0
- package/esm/FiberRef/FiberRef.js +52 -0
- package/esm/FiberRef/FiberRef.js.map +1 -0
- package/esm/FiberRef/index.d.ts +3 -0
- package/esm/FiberRef/index.d.ts.map +1 -0
- package/esm/FiberRef/index.js +4 -0
- package/esm/FiberRef/index.js.map +1 -0
- package/esm/FiberRef/operations.d.ts +9 -0
- package/esm/FiberRef/operations.d.ts.map +1 -0
- package/esm/FiberRef/operations.js +13 -0
- package/esm/FiberRef/operations.js.map +1 -0
- package/esm/FiberRefs/FiberRefs.d.ts +19 -0
- package/esm/FiberRefs/FiberRefs.d.ts.map +1 -0
- package/esm/FiberRefs/FiberRefs.js +95 -0
- package/esm/FiberRefs/FiberRefs.js.map +1 -0
- package/esm/FiberRefs/index.d.ts +2 -0
- package/esm/FiberRefs/index.d.ts.map +1 -0
- package/esm/FiberRefs/index.js +2 -0
- package/esm/FiberRefs/index.js.map +1 -0
- package/esm/FiberRuntime/FiberRuntime.d.ts +154 -0
- package/esm/FiberRuntime/FiberRuntime.d.ts.map +1 -0
- package/esm/FiberRuntime/FiberRuntime.js +479 -0
- package/esm/FiberRuntime/FiberRuntime.js.map +1 -0
- package/esm/FiberRuntime/Frame.d.ts +14 -0
- package/esm/FiberRuntime/Frame.d.ts.map +1 -0
- package/esm/FiberRuntime/Frame.js +13 -0
- package/esm/FiberRuntime/Frame.js.map +1 -0
- package/esm/FiberRuntime/index.d.ts +2 -0
- package/esm/FiberRuntime/index.d.ts.map +1 -0
- package/esm/FiberRuntime/index.js +2 -0
- package/esm/FiberRuntime/index.js.map +1 -0
- package/esm/FiberStatus/index.d.ts +19 -0
- package/esm/FiberStatus/index.d.ts.map +1 -0
- package/esm/FiberStatus/index.js +18 -0
- package/esm/FiberStatus/index.js.map +1 -0
- package/esm/Finalizer/Finalizer.d.ts +39 -0
- package/esm/Finalizer/Finalizer.d.ts.map +1 -0
- package/esm/Finalizer/Finalizer.js +19 -0
- package/esm/Finalizer/Finalizer.js.map +1 -0
- package/esm/Finalizer/index.d.ts +2 -0
- package/esm/Finalizer/index.d.ts.map +1 -0
- package/esm/Finalizer/index.js +2 -0
- package/esm/Finalizer/index.js.map +1 -0
- package/esm/Future/Future.d.ts +23 -0
- package/esm/Future/Future.d.ts.map +1 -0
- package/esm/Future/Future.js +36 -0
- package/esm/Future/Future.js.map +1 -0
- package/esm/Future/MutableFutureQueue.d.ts +16 -0
- package/esm/Future/MutableFutureQueue.d.ts.map +1 -0
- package/esm/Future/MutableFutureQueue.js +36 -0
- package/esm/Future/MutableFutureQueue.js.map +1 -0
- package/esm/Future/complete.d.ts +4 -0
- package/esm/Future/complete.d.ts.map +1 -0
- package/esm/Future/complete.js +10 -0
- package/esm/Future/complete.js.map +1 -0
- package/esm/Future/index.d.ts +4 -0
- package/esm/Future/index.d.ts.map +1 -0
- package/esm/Future/index.js +4 -0
- package/esm/Future/index.js.map +1 -0
- package/esm/Future/wait.d.ts +4 -0
- package/esm/Future/wait.d.ts.map +1 -0
- package/esm/Future/wait.js +5 -0
- package/esm/Future/wait.js.map +1 -0
- package/esm/Fx/Fx.d.ts +136 -0
- package/esm/Fx/Fx.d.ts.map +1 -0
- package/esm/Fx/Fx.js +173 -0
- package/esm/Fx/Fx.js.map +1 -0
- package/esm/Fx/Instruction.d.ts +202 -0
- package/esm/Fx/Instruction.d.ts.map +1 -0
- package/esm/Fx/Instruction.js +358 -0
- package/esm/Fx/Instruction.js.map +1 -0
- package/esm/Fx/index.d.ts +5 -0
- package/esm/Fx/index.d.ts.map +1 -0
- package/esm/Fx/index.js +5 -0
- package/esm/Fx/index.js.map +1 -0
- package/esm/Fx/join.d.ts +4 -0
- package/esm/Fx/join.d.ts.map +1 -0
- package/esm/Fx/join.js +12 -0
- package/esm/Fx/join.js.map +1 -0
- package/esm/Fx/logging.d.ts +11 -0
- package/esm/Fx/logging.d.ts.map +1 -0
- package/esm/Fx/logging.js +17 -0
- package/esm/Fx/logging.js.map +1 -0
- package/esm/Fx/scoped.d.ts +20 -0
- package/esm/Fx/scoped.d.ts.map +1 -0
- package/esm/Fx/scoped.js +45 -0
- package/esm/Fx/scoped.js.map +1 -0
- package/esm/ImmutableMap/ImmutableMap.d.ts +15 -0
- package/esm/ImmutableMap/ImmutableMap.d.ts.map +1 -0
- package/esm/ImmutableMap/ImmutableMap.js +35 -0
- package/esm/ImmutableMap/ImmutableMap.js.map +1 -0
- package/esm/ImmutableMap/index.d.ts +2 -0
- package/esm/ImmutableMap/index.d.ts.map +1 -0
- package/esm/ImmutableMap/index.js +2 -0
- package/esm/ImmutableMap/index.js.map +1 -0
- package/esm/Layer/Layer.d.ts +14 -0
- package/esm/Layer/Layer.d.ts.map +1 -0
- package/esm/Layer/Layer.js +14 -0
- package/esm/Layer/Layer.js.map +1 -0
- package/esm/Layer/index.d.ts +2 -0
- package/esm/Layer/index.d.ts.map +1 -0
- package/esm/Layer/index.js +2 -0
- package/esm/Layer/index.js.map +1 -0
- package/esm/Logger/Console.d.ts +3 -0
- package/esm/Logger/Console.d.ts.map +1 -0
- package/esm/Logger/Console.js +72 -0
- package/esm/Logger/Console.js.map +1 -0
- package/esm/Logger/LogAnnotation.d.ts +6 -0
- package/esm/Logger/LogAnnotation.d.ts.map +1 -0
- package/esm/Logger/LogAnnotation.js +4 -0
- package/esm/Logger/LogAnnotation.js.map +1 -0
- package/esm/Logger/LogLevel.d.ts +11 -0
- package/esm/Logger/LogLevel.d.ts.map +1 -0
- package/esm/Logger/LogLevel.js +12 -0
- package/esm/Logger/LogLevel.js.map +1 -0
- package/esm/Logger/LogSpan.d.ts +7 -0
- package/esm/Logger/LogSpan.d.ts.map +1 -0
- package/esm/Logger/LogSpan.js +4 -0
- package/esm/Logger/LogSpan.js.map +1 -0
- package/esm/Logger/Logger.d.ts +31 -0
- package/esm/Logger/Logger.d.ts.map +1 -0
- package/esm/Logger/Logger.js +36 -0
- package/esm/Logger/Logger.js.map +1 -0
- package/esm/Logger/index.d.ts +2 -0
- package/esm/Logger/index.d.ts.map +1 -0
- package/esm/Logger/index.js +2 -0
- package/esm/Logger/index.js.map +1 -0
- package/esm/Platform/Platform.d.ts +14 -0
- package/esm/Platform/Platform.d.ts.map +1 -0
- package/esm/Platform/Platform.js +19 -0
- package/esm/Platform/Platform.js.map +1 -0
- package/esm/Platform/TestPlatform.d.ts +7 -0
- package/esm/Platform/TestPlatform.d.ts.map +1 -0
- package/esm/Platform/TestPlatform.js +9 -0
- package/esm/Platform/TestPlatform.js.map +1 -0
- package/esm/Platform/index.d.ts +3 -0
- package/esm/Platform/index.d.ts.map +1 -0
- package/esm/Platform/index.js +3 -0
- package/esm/Platform/index.js.map +1 -0
- package/esm/Ref/Ref.d.ts +40 -0
- package/esm/Ref/Ref.d.ts.map +1 -0
- package/esm/Ref/Ref.js +30 -0
- package/esm/Ref/Ref.js.map +1 -0
- package/esm/Ref/atomic.d.ts +5 -0
- package/esm/Ref/atomic.d.ts.map +1 -0
- package/esm/Ref/atomic.js +16 -0
- package/esm/Ref/atomic.js.map +1 -0
- package/esm/Ref/index.d.ts +3 -0
- package/esm/Ref/index.d.ts.map +1 -0
- package/esm/Ref/index.js +3 -0
- package/esm/Ref/index.js.map +1 -0
- package/esm/Schedule/Decision.d.ts +15 -0
- package/esm/Schedule/Decision.d.ts.map +1 -0
- package/esm/Schedule/Decision.js +34 -0
- package/esm/Schedule/Decision.js.map +1 -0
- package/esm/Schedule/Schedule.d.ts +30 -0
- package/esm/Schedule/Schedule.d.ts.map +1 -0
- package/esm/Schedule/Schedule.js +64 -0
- package/esm/Schedule/Schedule.js.map +1 -0
- package/esm/Schedule/ScheduleState.d.ts +45 -0
- package/esm/Schedule/ScheduleState.d.ts.map +1 -0
- package/esm/Schedule/ScheduleState.js +54 -0
- package/esm/Schedule/ScheduleState.js.map +1 -0
- package/esm/Schedule/index.d.ts +4 -0
- package/esm/Schedule/index.d.ts.map +1 -0
- package/esm/Schedule/index.js +4 -0
- package/esm/Schedule/index.js.map +1 -0
- package/esm/Scheduler/RootScheduler.d.ts +4 -0
- package/esm/Scheduler/RootScheduler.d.ts.map +1 -0
- package/esm/Scheduler/RootScheduler.js +53 -0
- package/esm/Scheduler/RootScheduler.js.map +1 -0
- package/esm/Scheduler/Scheduler.d.ts +14 -0
- package/esm/Scheduler/Scheduler.d.ts.map +1 -0
- package/esm/Scheduler/Scheduler.js +3 -0
- package/esm/Scheduler/Scheduler.js.map +1 -0
- package/esm/Scheduler/callbackScheduler.d.ts +5 -0
- package/esm/Scheduler/callbackScheduler.d.ts.map +1 -0
- package/esm/Scheduler/callbackScheduler.js +32 -0
- package/esm/Scheduler/callbackScheduler.js.map +1 -0
- package/esm/Scheduler/index.d.ts +1 -0
- package/esm/Scheduler/index.d.ts.map +1 -0
- package/esm/Scheduler/index.js +2 -0
- package/esm/Scheduler/index.js.map +1 -0
- package/esm/Scheduler/scheduled.d.ts +10 -0
- package/esm/Scheduler/scheduled.d.ts.map +1 -0
- package/esm/Scheduler/scheduled.js +21 -0
- package/esm/Scheduler/scheduled.js.map +1 -0
- package/esm/Scope/Closeable.d.ts +11 -0
- package/esm/Scope/Closeable.d.ts.map +1 -0
- package/esm/Scope/Closeable.js +20 -0
- package/esm/Scope/Closeable.js.map +1 -0
- package/esm/Scope/GlobalScope.d.ts +3 -0
- package/esm/Scope/GlobalScope.d.ts.map +1 -0
- package/esm/Scope/GlobalScope.js +12 -0
- package/esm/Scope/GlobalScope.js.map +1 -0
- package/esm/Scope/LocalScope.d.ts +24 -0
- package/esm/Scope/LocalScope.d.ts.map +1 -0
- package/esm/Scope/LocalScope.js +70 -0
- package/esm/Scope/LocalScope.js.map +1 -0
- package/esm/Scope/ReleaseMap.d.ts +19 -0
- package/esm/Scope/ReleaseMap.d.ts.map +1 -0
- package/esm/Scope/ReleaseMap.js +62 -0
- package/esm/Scope/ReleaseMap.js.map +1 -0
- package/esm/Scope/Scope.d.ts +11 -0
- package/esm/Scope/Scope.d.ts.map +1 -0
- package/esm/Scope/Scope.js +3 -0
- package/esm/Scope/Scope.js.map +1 -0
- package/esm/Scope/ScopeState.d.ts +19 -0
- package/esm/Scope/ScopeState.d.ts.map +1 -0
- package/esm/Scope/ScopeState.js +24 -0
- package/esm/Scope/ScopeState.js.map +1 -0
- package/esm/Scope/index.d.ts +7 -0
- package/esm/Scope/index.d.ts.map +1 -0
- package/esm/Scope/index.js +7 -0
- package/esm/Scope/index.js.map +1 -0
- package/esm/Semaphore/Semaphore.d.ts +38 -0
- package/esm/Semaphore/Semaphore.d.ts.map +1 -0
- package/esm/Semaphore/Semaphore.js +87 -0
- package/esm/Semaphore/Semaphore.js.map +1 -0
- package/esm/Semaphore/index.d.ts +2 -0
- package/esm/Semaphore/index.d.ts.map +1 -0
- package/esm/Semaphore/index.js +2 -0
- package/esm/Semaphore/index.js.map +1 -0
- package/esm/Service/Id.d.ts +59 -0
- package/esm/Service/Id.d.ts.map +1 -0
- package/esm/Service/Id.js +62 -0
- package/esm/Service/Id.js.map +1 -0
- package/esm/Service/Service.d.ts +20 -0
- package/esm/Service/Service.d.ts.map +1 -0
- package/esm/Service/Service.js +14 -0
- package/esm/Service/Service.js.map +1 -0
- package/esm/Service/index.d.ts +4 -0
- package/esm/Service/index.d.ts.map +1 -0
- package/esm/Service/index.js +4 -0
- package/esm/Service/index.js.map +1 -0
- package/esm/Service/tagged.d.ts +23 -0
- package/esm/Service/tagged.d.ts.map +1 -0
- package/esm/Service/tagged.js +9 -0
- package/esm/Service/tagged.js.map +1 -0
- package/esm/Sink/Sink.d.ts +22 -0
- package/esm/Sink/Sink.d.ts.map +1 -0
- package/esm/Sink/Sink.js +26 -0
- package/esm/Sink/Sink.js.map +1 -0
- package/esm/Sink/index.d.ts +1 -0
- package/esm/Sink/index.d.ts.map +1 -0
- package/esm/Sink/index.js +2 -0
- package/esm/Sink/index.js.map +1 -0
- package/esm/Stack/index.d.ts +20 -0
- package/esm/Stack/index.d.ts.map +1 -0
- package/esm/Stack/index.js +70 -0
- package/esm/Stack/index.js.map +1 -0
- package/esm/StackFrame/StackFrame.d.ts +29 -0
- package/esm/StackFrame/StackFrame.d.ts.map +1 -0
- package/esm/StackFrame/StackFrame.js +35 -0
- package/esm/StackFrame/StackFrame.js.map +1 -0
- package/esm/StackFrame/getStackFrames.d.ts +7 -0
- package/esm/StackFrame/getStackFrames.d.ts.map +1 -0
- package/esm/StackFrame/getStackFrames.js +51 -0
- package/esm/StackFrame/getStackFrames.js.map +1 -0
- package/esm/StackFrame/index.d.ts +3 -0
- package/esm/StackFrame/index.d.ts.map +1 -0
- package/esm/StackFrame/index.js +3 -0
- package/esm/StackFrame/index.js.map +1 -0
- package/esm/StackFrame/parseChromeStack.d.ts +3 -0
- package/esm/StackFrame/parseChromeStack.d.ts.map +1 -0
- package/esm/StackFrame/parseChromeStack.js +32 -0
- package/esm/StackFrame/parseChromeStack.js.map +1 -0
- package/esm/StackFrame/parseGeckoStackFrame.d.ts +3 -0
- package/esm/StackFrame/parseGeckoStackFrame.d.ts.map +1 -0
- package/esm/StackFrame/parseGeckoStackFrame.js +24 -0
- package/esm/StackFrame/parseGeckoStackFrame.js.map +1 -0
- package/esm/Stream/Stream.d.ts +18 -0
- package/esm/Stream/Stream.d.ts.map +1 -0
- package/esm/Stream/Stream.js +4 -0
- package/esm/Stream/Stream.js.map +1 -0
- package/esm/Stream/drain.d.ts +11 -0
- package/esm/Stream/drain.d.ts.map +1 -0
- package/esm/Stream/drain.js +21 -0
- package/esm/Stream/drain.js.map +1 -0
- package/esm/Stream/fromFx.d.ts +4 -0
- package/esm/Stream/fromFx.d.ts.map +1 -0
- package/esm/Stream/fromFx.js +7 -0
- package/esm/Stream/fromFx.js.map +1 -0
- package/esm/Stream/index.d.ts +4 -0
- package/esm/Stream/index.d.ts.map +1 -0
- package/esm/Stream/index.js +4 -0
- package/esm/Stream/index.js.map +1 -0
- package/esm/Supervisor/Supervisor.d.ts +32 -0
- package/esm/Supervisor/Supervisor.d.ts.map +1 -0
- package/esm/Supervisor/Supervisor.js +40 -0
- package/esm/Supervisor/Supervisor.js.map +1 -0
- package/esm/Supervisor/index.d.ts +2 -0
- package/esm/Supervisor/index.d.ts.map +1 -0
- package/esm/Supervisor/index.js +2 -0
- package/esm/Supervisor/index.js.map +1 -0
- package/esm/Tagged/index.d.ts +79 -0
- package/esm/Tagged/index.d.ts.map +1 -0
- package/esm/Tagged/index.js +43 -0
- package/esm/Tagged/index.js.map +1 -0
- package/esm/Time/index.d.ts +95 -0
- package/esm/Time/index.d.ts.map +1 -0
- package/esm/Time/index.js +33 -0
- package/esm/Time/index.js.map +1 -0
- package/esm/Timeline/index.d.ts +27 -0
- package/esm/Timeline/index.d.ts.map +1 -0
- package/esm/Timeline/index.js +98 -0
- package/esm/Timeline/index.js.map +1 -0
- package/esm/Timer/SetTimeoutTimer.d.ts +4 -0
- package/esm/Timer/SetTimeoutTimer.d.ts.map +1 -0
- package/esm/Timer/SetTimeoutTimer.js +14 -0
- package/esm/Timer/SetTimeoutTimer.js.map +1 -0
- package/esm/Timer/TestTimer.d.ts +9 -0
- package/esm/Timer/TestTimer.d.ts.map +1 -0
- package/esm/Timer/TestTimer.js +25 -0
- package/esm/Timer/TestTimer.js.map +1 -0
- package/esm/Timer/Timer.d.ts +11 -0
- package/esm/Timer/Timer.d.ts.map +1 -0
- package/esm/Timer/Timer.js +16 -0
- package/esm/Timer/Timer.js.map +1 -0
- package/esm/Timer/index.d.ts +4 -0
- package/esm/Timer/index.d.ts.map +1 -0
- package/esm/Timer/index.js +4 -0
- package/esm/Timer/index.js.map +1 -0
- package/esm/Trace/Trace.d.ts +38 -0
- package/esm/Trace/Trace.d.ts.map +1 -0
- package/esm/Trace/Trace.js +152 -0
- package/esm/Trace/Trace.js.map +1 -0
- package/esm/Trace/index.d.ts +2 -0
- package/esm/Trace/index.d.ts.map +1 -0
- package/esm/Trace/index.js +2 -0
- package/esm/Trace/index.js.map +1 -0
- package/esm/Tracing/plugin.d.ts +10 -0
- package/esm/Tracing/plugin.d.ts.map +1 -0
- package/esm/Tracing/plugin.js +93 -0
- package/esm/Tracing/plugin.js.map +1 -0
- package/esm/Tracing/vite.d.ts +10 -0
- package/esm/Tracing/vite.d.ts.map +1 -0
- package/esm/Tracing/vite.js +50 -0
- package/esm/Tracing/vite.js.map +1 -0
- package/esm/index.d.ts +35 -0
- package/esm/index.d.ts.map +1 -0
- package/esm/index.js +68 -0
- package/esm/index.js.map +1 -0
- package/esm/internal.d.ts +18 -0
- package/esm/internal.d.ts.map +1 -0
- package/esm/internal.js +2 -0
- package/esm/internal.js.map +1 -0
- package/esm/test.d.ts +1 -0
- package/esm/test.d.ts.map +1 -0
- package/esm/test.js +2 -0
- package/esm/test.js.map +1 -0
- package/package.json +1238 -0
- package/readme.md +35 -0
- package/src/Atomic/Atomic.ts +122 -0
- package/src/Atomic/AtomicCounter.ts +23 -0
- package/src/Atomic/index.ts +2 -0
- package/src/Cause/Cause.ts +425 -0
- package/src/Cause/CauseError.ts +55 -0
- package/src/Cause/Renderer.ts +289 -0
- package/src/Cause/index.ts +1 -0
- package/src/Cause/prettyStringify.ts +8 -0
- package/src/Clock/Clock.ts +82 -0
- package/src/Clock/DateClock.ts +9 -0
- package/src/Clock/TestClock.ts +25 -0
- package/src/Clock/index.ts +3 -0
- package/src/Disposable/Disposable.ts +63 -0
- package/src/Disposable/index.ts +1 -0
- package/src/Duration/Duration.ts +125 -0
- package/src/Duration/index.ts +1 -0
- package/src/Env/Env.ts +62 -0
- package/src/Env/index.ts +1 -0
- package/src/Exit/Exit.ts +50 -0
- package/src/Exit/hkt.ts +29 -0
- package/src/Exit/index.ts +2 -0
- package/src/Fiber/Fiber.ts +85 -0
- package/src/Fiber/index.ts +1 -0
- package/src/FiberContext/FiberContext.ts +67 -0
- package/src/FiberContext/index.ts +1 -0
- package/src/FiberId/FiberId.ts +122 -0
- package/src/FiberId/index.ts +1 -0
- package/src/FiberRef/FiberRef.ts +93 -0
- package/src/FiberRef/index.ts +3 -0
- package/src/FiberRef/operations.ts +19 -0
- package/src/FiberRefs/FiberRefs.ts +162 -0
- package/src/FiberRefs/index.ts +1 -0
- package/src/FiberRuntime/FiberRuntime.ts +742 -0
- package/src/FiberRuntime/Frame.ts +28 -0
- package/src/FiberRuntime/index.ts +1 -0
- package/src/FiberStatus/index.ts +37 -0
- package/src/Finalizer/Finalizer.ts +48 -0
- package/src/Finalizer/index.ts +1 -0
- package/src/Future/Future.ts +72 -0
- package/src/Future/MutableFutureQueue.ts +58 -0
- package/src/Future/complete.ts +16 -0
- package/src/Future/index.ts +3 -0
- package/src/Future/wait.ts +8 -0
- package/src/Fx/Fx.test.ts +110 -0
- package/src/Fx/Fx.ts +629 -0
- package/src/Fx/Instruction.ts +468 -0
- package/src/Fx/index.ts +4 -0
- package/src/Fx/join.ts +17 -0
- package/src/Fx/logging.ts +69 -0
- package/src/Fx/scoped.ts +77 -0
- package/src/ImmutableMap/ImmutableMap.ts +55 -0
- package/src/ImmutableMap/index.ts +1 -0
- package/src/Layer/Layer.ts +44 -0
- package/src/Layer/index.ts +1 -0
- package/src/Logger/Console.test.ts +10 -0
- package/src/Logger/Console.ts +85 -0
- package/src/Logger/LogAnnotation.ts +8 -0
- package/src/Logger/LogLevel.ts +10 -0
- package/src/Logger/LogSpan.ts +10 -0
- package/src/Logger/Logger.ts +83 -0
- package/src/Logger/index.ts +1 -0
- package/src/Platform/Platform.ts +42 -0
- package/src/Platform/TestPlatform.ts +14 -0
- package/src/Platform/index.ts +2 -0
- package/src/Ref/Ref.test.ts +34 -0
- package/src/Ref/Ref.ts +76 -0
- package/src/Ref/atomic.ts +33 -0
- package/src/Ref/index.ts +2 -0
- package/src/Schedule/Decision.ts +44 -0
- package/src/Schedule/Schedule.ts +148 -0
- package/src/Schedule/ScheduleState.ts +80 -0
- package/src/Schedule/index.ts +3 -0
- package/src/Scheduler/RootScheduler.ts +84 -0
- package/src/Scheduler/Scheduler.ts +21 -0
- package/src/Scheduler/callbackScheduler.ts +43 -0
- package/src/Scheduler/index.ts +0 -0
- package/src/Scheduler/scheduled.ts +32 -0
- package/src/Scope/Closeable.test.ts +98 -0
- package/src/Scope/Closeable.ts +35 -0
- package/src/Scope/GlobalScope.ts +15 -0
- package/src/Scope/LocalScope.ts +93 -0
- package/src/Scope/ReleaseMap.ts +95 -0
- package/src/Scope/Scope.ts +13 -0
- package/src/Scope/ScopeState.ts +45 -0
- package/src/Scope/index.ts +6 -0
- package/src/Semaphore/Semaphore.ts +110 -0
- package/src/Semaphore/index.ts +1 -0
- package/src/Service/Id.ts +87 -0
- package/src/Service/Service.ts +31 -0
- package/src/Service/index.ts +3 -0
- package/src/Service/tagged.ts +10 -0
- package/src/Sink/Sink.ts +65 -0
- package/src/Sink/index.ts +0 -0
- package/src/Stack/index.ts +88 -0
- package/src/StackFrame/StackFrame.ts +68 -0
- package/src/StackFrame/getStackFrames.test.ts +30 -0
- package/src/StackFrame/getStackFrames.ts +70 -0
- package/src/StackFrame/index.ts +2 -0
- package/src/StackFrame/parseChromeStack.ts +43 -0
- package/src/StackFrame/parseGeckoStackFrame.ts +31 -0
- package/src/Stream/Stream.ts +21 -0
- package/src/Stream/drain.ts +73 -0
- package/src/Stream/fromFx.test.ts +39 -0
- package/src/Stream/fromFx.ts +27 -0
- package/src/Stream/index.ts +3 -0
- package/src/Supervisor/Supervisor.ts +49 -0
- package/src/Supervisor/index.ts +1 -0
- package/src/Tagged/index.ts +127 -0
- package/src/Time/index.ts +62 -0
- package/src/Timeline/index.ts +157 -0
- package/src/Timer/SetTimeoutTimer.ts +19 -0
- package/src/Timer/TestTimer.ts +39 -0
- package/src/Timer/Timer.ts +24 -0
- package/src/Timer/index.ts +3 -0
- package/src/Trace/Trace.ts +210 -0
- package/src/Trace/index.ts +1 -0
- package/src/Tracing/plugin.ts +155 -0
- package/src/Tracing/vite.ts +72 -0
- package/src/index.ts +34 -0
- package/src/internal.ts +33 -0
- package/src/test.ts +0 -0
- package/tools/common.ts +43 -0
- package/tools/generatePackageExports.ts +100 -0
- package/tsconfig.base.json +32 -0
- package/tsconfig.build.cjs.json +26 -0
- package/tsconfig.build.esm.json +30 -0
- package/tsconfig.build.tracing.json +16 -0
- package/tsconfig.json +8 -0
- package/tsconfig.test.json +17 -0
- package/vite.config.ts +28 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.join = exports.fork = exports.deleteFiberRef = exports.popLocalFiberRef = exports.setFiberRefLocally = exports.setFiberRef = exports.maybeGetFiberRefValue = exports.maybeGetFiberRefStack = exports.FiberRefs = void 0;
|
|
27
|
+
const hkt_ts_1 = require("hkt-ts");
|
|
28
|
+
const Maybe = __importStar(require("hkt-ts/Maybe"));
|
|
29
|
+
const number_1 = require("hkt-ts/number");
|
|
30
|
+
const Atomic_js_1 = require("@/Atomic/Atomic.js");
|
|
31
|
+
// eslint-disable-next-line import/no-cycle
|
|
32
|
+
const FiberRef = __importStar(require("@/FiberRef/FiberRef.js"));
|
|
33
|
+
const ImmutableMap_js_1 = require("@/ImmutableMap/ImmutableMap.js");
|
|
34
|
+
const index_js_1 = require("@/Semaphore/index.js");
|
|
35
|
+
const Stack = __importStar(require("@/Stack/index.js"));
|
|
36
|
+
const Trace_js_1 = require("@/Trace/Trace.js");
|
|
37
|
+
const defaultFiberLocals = (concurrencyLevel = (0, number_1.NonNegativeInteger)(Infinity), interruptStatus = true, trace = Trace_js_1.EmptyTrace) => new Map([
|
|
38
|
+
[FiberRef.CurrentConcurrencyLevel, new Stack.Stack(new index_js_1.Semaphore(concurrencyLevel))],
|
|
39
|
+
[FiberRef.CurrentInterruptStatus, new Stack.Stack(interruptStatus)],
|
|
40
|
+
[FiberRef.CurrentTrace, new Stack.Stack(trace)],
|
|
41
|
+
[FiberRef.Services, new Stack.Stack((0, ImmutableMap_js_1.ImmutableMap)())],
|
|
42
|
+
[FiberRef.Layers, new Stack.Stack((0, ImmutableMap_js_1.ImmutableMap)())],
|
|
43
|
+
[FiberRef.CurrentLogSpans, new Stack.Stack((0, ImmutableMap_js_1.ImmutableMap)())],
|
|
44
|
+
[FiberRef.CurrentLogAnnotations, new Stack.Stack((0, ImmutableMap_js_1.ImmutableMap)())],
|
|
45
|
+
]);
|
|
46
|
+
function FiberRefs(locals = (0, ImmutableMap_js_1.ImmutableMap)(defaultFiberLocals())) {
|
|
47
|
+
const atomic = (0, Atomic_js_1.Atomic)(locals);
|
|
48
|
+
const fiberRefs = {
|
|
49
|
+
locals: atomic,
|
|
50
|
+
fork: () => fork(fiberRefs),
|
|
51
|
+
*[Symbol.iterator]() {
|
|
52
|
+
for (const [key, stack] of atomic.get()) {
|
|
53
|
+
yield [key, stack.value];
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
return fiberRefs;
|
|
58
|
+
}
|
|
59
|
+
exports.FiberRefs = FiberRefs;
|
|
60
|
+
function maybeGetFiberRefStack(fiberRef) {
|
|
61
|
+
return (fiberRefs) => fiberRefs.locals.get().get(fiberRef);
|
|
62
|
+
}
|
|
63
|
+
exports.maybeGetFiberRefStack = maybeGetFiberRefStack;
|
|
64
|
+
function maybeGetFiberRefValue(fiberRef) {
|
|
65
|
+
return (0, hkt_ts_1.flow)(maybeGetFiberRefStack(fiberRef), Maybe.map((s) => s.value));
|
|
66
|
+
}
|
|
67
|
+
exports.maybeGetFiberRefValue = maybeGetFiberRefValue;
|
|
68
|
+
function setFiberRef(fiberRef, value) {
|
|
69
|
+
return (fiberRefs) => fiberRefs.locals.modify((locals) => {
|
|
70
|
+
const curr = maybeGetFiberRefStack(fiberRef)(fiberRefs);
|
|
71
|
+
return [
|
|
72
|
+
value,
|
|
73
|
+
locals.set(fiberRef, (0, hkt_ts_1.pipe)(curr, Maybe.match(() => new Stack.Stack(value), (c) => c.replace(() => value)))),
|
|
74
|
+
];
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
exports.setFiberRef = setFiberRef;
|
|
78
|
+
function setFiberRefLocally(fiberRef, value) {
|
|
79
|
+
return (fiberRefs) => fiberRefs.locals.modify((locals) => {
|
|
80
|
+
const curr = maybeGetFiberRefStack(fiberRef)(fiberRefs);
|
|
81
|
+
return [
|
|
82
|
+
value,
|
|
83
|
+
locals.set(fiberRef, (0, hkt_ts_1.pipe)(curr, Maybe.match(() => new Stack.Stack(value), (c) => c.push(value)))),
|
|
84
|
+
];
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
exports.setFiberRefLocally = setFiberRefLocally;
|
|
88
|
+
function popLocalFiberRef(fiberRef) {
|
|
89
|
+
return (fiberRefs) => fiberRefs.locals.modify((locals) => {
|
|
90
|
+
const curr = maybeGetFiberRefStack(fiberRef)(fiberRefs);
|
|
91
|
+
if (Maybe.isNothing(curr)) {
|
|
92
|
+
return [Maybe.Nothing, locals.remove(fiberRef)];
|
|
93
|
+
}
|
|
94
|
+
const prev = curr.value.pop();
|
|
95
|
+
return [
|
|
96
|
+
(0, hkt_ts_1.pipe)(curr, Maybe.map((c) => c.value)),
|
|
97
|
+
prev ? locals.set(fiberRef, prev) : locals.remove(fiberRef),
|
|
98
|
+
];
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
exports.popLocalFiberRef = popLocalFiberRef;
|
|
102
|
+
function deleteFiberRef(fiberRef) {
|
|
103
|
+
return (fiberRefs) => fiberRefs.locals.modify((locals) => {
|
|
104
|
+
const curr = maybeGetFiberRefStack(fiberRef)(fiberRefs);
|
|
105
|
+
return [curr, locals.remove(fiberRef)];
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
exports.deleteFiberRef = deleteFiberRef;
|
|
109
|
+
function fork(fiberRefs) {
|
|
110
|
+
const updated = new Map();
|
|
111
|
+
for (const [key, stack] of fiberRefs.locals.get()) {
|
|
112
|
+
const forked = key.fork(stack.value);
|
|
113
|
+
if (Maybe.isJust(forked)) {
|
|
114
|
+
updated.set(key, stack.replace(() => forked.value));
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
return FiberRefs((0, ImmutableMap_js_1.ImmutableMap)(updated));
|
|
118
|
+
}
|
|
119
|
+
exports.fork = fork;
|
|
120
|
+
function join(first, second) {
|
|
121
|
+
const updated = new Map(first.locals.get());
|
|
122
|
+
const incoming = second.locals.get();
|
|
123
|
+
for (const [key, stack] of incoming) {
|
|
124
|
+
const current = updated.get(key);
|
|
125
|
+
updated.set(key, current ? current.replace((a) => key.join(a, stack.value)) : stack);
|
|
126
|
+
}
|
|
127
|
+
first.locals.set((0, ImmutableMap_js_1.ImmutableMap)(updated));
|
|
128
|
+
}
|
|
129
|
+
exports.join = join;
|
|
130
|
+
//# sourceMappingURL=FiberRefs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FiberRefs.js","sourceRoot":"","sources":["../../src/FiberRefs/FiberRefs.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/FiberRefs/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./FiberRefs.js"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/FiberRefs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B"}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import * as Maybe from 'hkt-ts/Maybe';
|
|
2
|
+
import { Frame } from './Frame.js';
|
|
3
|
+
import { AtomicCounter } from '@/Atomic/AtomicCounter.js';
|
|
4
|
+
import * as Cause from '@/Cause/Cause.js';
|
|
5
|
+
import { Disposable, Settable } from '@/Disposable/Disposable.js';
|
|
6
|
+
import * as Env from '@/Env/Env.js';
|
|
7
|
+
import * as Exit from '@/Exit/Exit.js';
|
|
8
|
+
import * as Fiber from '@/Fiber/Fiber.js';
|
|
9
|
+
import { FiberContext } from '@/FiberContext/FiberContext.js';
|
|
10
|
+
import * as FiberId from '@/FiberId/FiberId.js';
|
|
11
|
+
import * as FiberRef from '@/FiberRef/FiberRef.js';
|
|
12
|
+
import { FiberStatus } from '@/FiberStatus/index.js';
|
|
13
|
+
import * as Fx from '@/Fx/Fx.js';
|
|
14
|
+
import { AnyInstruction } from '@/Fx/Instruction.js';
|
|
15
|
+
import { Stack } from '@/Stack/index.js';
|
|
16
|
+
import { Supervisor } from '@/Supervisor/Supervisor.js';
|
|
17
|
+
import { Time } from '@/Time/index.js';
|
|
18
|
+
import * as Trace from '@/Trace/Trace.js';
|
|
19
|
+
declare type Processors = {
|
|
20
|
+
readonly [K in AnyInstruction['tag']]: (instr: Extract<AnyInstruction, {
|
|
21
|
+
readonly tag: K;
|
|
22
|
+
}>) => void;
|
|
23
|
+
};
|
|
24
|
+
export declare class FiberRuntime<F extends Fx.AnyFx> implements Fiber.Live<Fx.ErrorsOf<F>, Fx.OutputOf<F>> {
|
|
25
|
+
readonly fx: F;
|
|
26
|
+
readonly context: FiberContext;
|
|
27
|
+
protected _started: boolean;
|
|
28
|
+
protected _current: Maybe.Maybe<AnyInstruction>;
|
|
29
|
+
protected _status: FiberStatus;
|
|
30
|
+
protected _observers: Array<(exit: Exit.Exit<Fx.ErrorsOf<F>, Fx.OutputOf<F>>) => void>;
|
|
31
|
+
protected _children: Array<FiberRuntime<Fx.AnyFx>>;
|
|
32
|
+
protected _opCountRemaining: AtomicCounter;
|
|
33
|
+
protected _interruptedBy: Set<FiberId.FiberId>;
|
|
34
|
+
protected _disposable: Settable;
|
|
35
|
+
protected _frames: Array<Frame>;
|
|
36
|
+
protected _processors: Processors;
|
|
37
|
+
constructor(fx: F, context?: FiberContext);
|
|
38
|
+
readonly tag = "Live";
|
|
39
|
+
readonly id: FiberId.Live;
|
|
40
|
+
readonly status: Fx.Of<FiberStatus>;
|
|
41
|
+
readonly trace: Fx.Of<Trace.Trace>;
|
|
42
|
+
readonly exit: Fx.Fx<never, never, Exit.Exit<any, any>>;
|
|
43
|
+
/**
|
|
44
|
+
* Start running this Fiber synchronously. It can potentially exit BEFORE being able to cancel it.
|
|
45
|
+
*/
|
|
46
|
+
readonly startSync: () => boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Start running this Fiber asynchronously. It can never exit before being able to cancel its work.
|
|
49
|
+
*/
|
|
50
|
+
readonly startAsync: () => boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Add an Observer to the current Fiber's Exit value
|
|
53
|
+
*/
|
|
54
|
+
readonly addObserver: (observer: (exit: Exit.Exit<Fx.ErrorsOf<F>, Fx.OutputOf<F>>) => void) => Disposable;
|
|
55
|
+
readonly interruptAs: (id: FiberId.FiberId) => Fx.Of<Exit.Exit<Fx.ErrorsOf<F>, Fx.OutputOf<F>>>;
|
|
56
|
+
protected start(async: boolean): boolean;
|
|
57
|
+
protected loop(): void;
|
|
58
|
+
protected run(instr: AnyInstruction): Disposable | undefined;
|
|
59
|
+
protected processAccess(instr: Extract<AnyInstruction, {
|
|
60
|
+
readonly tag: 'Access';
|
|
61
|
+
}>): void;
|
|
62
|
+
protected processAddTrace(instr: Extract<AnyInstruction, {
|
|
63
|
+
readonly tag: 'AddTrace';
|
|
64
|
+
}>): void;
|
|
65
|
+
protected processBoth(instr: Extract<AnyInstruction, {
|
|
66
|
+
readonly tag: 'Both';
|
|
67
|
+
}>): void;
|
|
68
|
+
protected processDeleteFiberRef(instr: Extract<AnyInstruction, {
|
|
69
|
+
readonly tag: 'DeleteFiberRef';
|
|
70
|
+
}>): void;
|
|
71
|
+
protected processEither(instr: Extract<AnyInstruction, {
|
|
72
|
+
readonly tag: 'Either';
|
|
73
|
+
}>): void;
|
|
74
|
+
protected processFiberRefLocally(instr: Extract<AnyInstruction, {
|
|
75
|
+
readonly tag: 'FiberRefLocally';
|
|
76
|
+
}>): void;
|
|
77
|
+
protected processFlatMap(instr: Extract<AnyInstruction, {
|
|
78
|
+
readonly tag: 'FlatMap';
|
|
79
|
+
}>): void;
|
|
80
|
+
protected processFork(instr: Extract<AnyInstruction, {
|
|
81
|
+
readonly tag: 'Fork';
|
|
82
|
+
}>): void;
|
|
83
|
+
protected processFromCause(instr: Extract<AnyInstruction, {
|
|
84
|
+
readonly tag: 'FromCause';
|
|
85
|
+
}>): void;
|
|
86
|
+
protected processFromLazy(instr: Extract<AnyInstruction, {
|
|
87
|
+
readonly tag: 'FromLazy';
|
|
88
|
+
}>): void;
|
|
89
|
+
protected processGetFiberRef(instr: Extract<AnyInstruction, {
|
|
90
|
+
readonly tag: 'GetFiberRef';
|
|
91
|
+
}>): void | Maybe.Just<import("@/Fx/Instruction.js").GetFiberContext | import("@/Fx/Instruction.js").GetInterruptStatus | import("@/Fx/Instruction.js").GetTrace | import("@/Fx/Instruction.js").BothFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").EitherFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").FromCause<never> | import("@/Fx/Instruction.js").FromLazy<any> | import("@/Fx/Instruction.js").Now<any> | import("@/Fx/Instruction.js").Access<never, never, never, any> | import("@/Fx/Instruction.js").AddTrace<never, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, never, any> | import("@/Fx/Instruction.js").FlatMap<never, never, any, never, never, any> | import("@/Fx/Instruction.js").Fork<never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, never, any> | import("@/Fx/Instruction.js").LazyFx<never, never, any> | import("@/Fx/Instruction.js").MapFx<never, never, any, any> | import("@/Fx/Instruction.js").Match<never, never, any, never, never, any, never, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").Provide<any, never, any> | import("@/Fx/Instruction.js").ProvideService<never, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, never, any, never, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, never, any> | import("@/Fx/Instruction.js").Wait<never, never, any> | import("@/Fx/Instruction.js").BothFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").EitherFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FromCause<any> | import("@/Fx/Instruction.js").Access<any, any, any, any> | import("@/Fx/Instruction.js").AddTrace<any, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FlatMap<any, any, any, any, any, any> | import("@/Fx/Instruction.js").Fork<any, any, any> | import("@/Fx/Instruction.js").GetFiberRef<any, any, any> | import("@/Fx/Instruction.js").LazyFx<any, any, any> | import("@/Fx/Instruction.js").MapFx<any, any, any, any> | import("@/Fx/Instruction.js").Match<any, any, any, any, any, any, any, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").Provide<any, any, any> | import("@/Fx/Instruction.js").ProvideService<any, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, any, any, any, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, any, any> | import("@/Fx/Instruction.js").Wait<any, any, any> | import("@/Fx/Instruction.js").Access<never, never, any, any> | import("@/Fx/Instruction.js").AddTrace<never, any, any> | import("@/Fx/Instruction.js").BothFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").EitherFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, any, any> | import("@/Fx/Instruction.js").FlatMap<never, any, any, never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, any, any> | import("@/Fx/Instruction.js").LazyFx<never, any, any> | import("@/Fx/Instruction.js").MapFx<never, any, any, any> | import("@/Fx/Instruction.js").Match<never, any, any, never, any, any, never, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").ProvideService<never, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, any, any, never, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, any, any> | import("@/Fx/Instruction.js").Wait<never, any, any> | import("@/Fx/Instruction.js").Access<any, any, never, any> | import("@/Fx/Instruction.js").AddTrace<any, never, any> | import("@/Fx/Instruction.js").BothFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").EitherFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, never, any> | import("@/Fx/Instruction.js").FlatMap<any, never, any, any, never, any> | import("@/Fx/Instruction.js").GetFiberRef<any, never, any> | import("@/Fx/Instruction.js").LazyFx<any, never, any> | import("@/Fx/Instruction.js").MapFx<any, never, any, any> | import("@/Fx/Instruction.js").Match<any, never, any, any, never, any, any, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").ProvideService<any, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, never, any, any, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, never, any> | import("@/Fx/Instruction.js").Wait<any, never, any>>;
|
|
92
|
+
protected processGetInterruptStatus(_: Extract<AnyInstruction, {
|
|
93
|
+
readonly tag: 'GetInterruptStatus';
|
|
94
|
+
}>): void;
|
|
95
|
+
protected processGetTrace(_: Extract<AnyInstruction, {
|
|
96
|
+
readonly tag: 'GetTrace';
|
|
97
|
+
}>): void;
|
|
98
|
+
protected processLazy(instr: Extract<AnyInstruction, {
|
|
99
|
+
readonly tag: 'Lazy';
|
|
100
|
+
}>): void;
|
|
101
|
+
protected processMap(instr: Extract<AnyInstruction, {
|
|
102
|
+
readonly tag: 'Map';
|
|
103
|
+
}>): void;
|
|
104
|
+
protected processMatch(instr: Extract<AnyInstruction, {
|
|
105
|
+
readonly tag: 'Match';
|
|
106
|
+
}>): void;
|
|
107
|
+
protected processModifyFiberRef(instr: Extract<AnyInstruction, {
|
|
108
|
+
readonly tag: 'ModifyFiberRef';
|
|
109
|
+
}>): void | Maybe.Just<import("@/Fx/Instruction.js").GetFiberContext | import("@/Fx/Instruction.js").GetInterruptStatus | import("@/Fx/Instruction.js").GetTrace | import("@/Fx/Instruction.js").BothFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").EitherFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").FromCause<never> | import("@/Fx/Instruction.js").FromLazy<any> | import("@/Fx/Instruction.js").Now<any> | import("@/Fx/Instruction.js").Access<never, never, never, any> | import("@/Fx/Instruction.js").AddTrace<never, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, never, any> | import("@/Fx/Instruction.js").FlatMap<never, never, any, never, never, any> | import("@/Fx/Instruction.js").Fork<never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, never, any> | import("@/Fx/Instruction.js").LazyFx<never, never, any> | import("@/Fx/Instruction.js").MapFx<never, never, any, any> | import("@/Fx/Instruction.js").Match<never, never, any, never, never, any, never, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").Provide<any, never, any> | import("@/Fx/Instruction.js").ProvideService<never, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, never, any, never, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, never, any> | import("@/Fx/Instruction.js").Wait<never, never, any> | import("@/Fx/Instruction.js").BothFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").EitherFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FromCause<any> | import("@/Fx/Instruction.js").Access<any, any, any, any> | import("@/Fx/Instruction.js").AddTrace<any, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FlatMap<any, any, any, any, any, any> | import("@/Fx/Instruction.js").Fork<any, any, any> | import("@/Fx/Instruction.js").GetFiberRef<any, any, any> | import("@/Fx/Instruction.js").LazyFx<any, any, any> | import("@/Fx/Instruction.js").MapFx<any, any, any, any> | import("@/Fx/Instruction.js").Match<any, any, any, any, any, any, any, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").Provide<any, any, any> | import("@/Fx/Instruction.js").ProvideService<any, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, any, any, any, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, any, any> | import("@/Fx/Instruction.js").Wait<any, any, any> | import("@/Fx/Instruction.js").Access<never, never, any, any> | import("@/Fx/Instruction.js").AddTrace<never, any, any> | import("@/Fx/Instruction.js").BothFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").EitherFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, any, any> | import("@/Fx/Instruction.js").FlatMap<never, any, any, never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, any, any> | import("@/Fx/Instruction.js").LazyFx<never, any, any> | import("@/Fx/Instruction.js").MapFx<never, any, any, any> | import("@/Fx/Instruction.js").Match<never, any, any, never, any, any, never, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").ProvideService<never, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, any, any, never, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, any, any> | import("@/Fx/Instruction.js").Wait<never, any, any> | import("@/Fx/Instruction.js").Access<any, any, never, any> | import("@/Fx/Instruction.js").AddTrace<any, never, any> | import("@/Fx/Instruction.js").BothFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").EitherFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, never, any> | import("@/Fx/Instruction.js").FlatMap<any, never, any, any, never, any> | import("@/Fx/Instruction.js").GetFiberRef<any, never, any> | import("@/Fx/Instruction.js").LazyFx<any, never, any> | import("@/Fx/Instruction.js").MapFx<any, never, any, any> | import("@/Fx/Instruction.js").Match<any, never, any, any, never, any, any, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").ProvideService<any, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, never, any, any, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, never, any> | import("@/Fx/Instruction.js").Wait<any, never, any>>;
|
|
110
|
+
protected processNow(instr: Extract<AnyInstruction, {
|
|
111
|
+
readonly tag: 'Now';
|
|
112
|
+
}>): void;
|
|
113
|
+
protected processProvide(instr: Extract<AnyInstruction, {
|
|
114
|
+
readonly tag: 'Provide';
|
|
115
|
+
}>): void;
|
|
116
|
+
protected processProvideLayer(instr: Extract<AnyInstruction, {
|
|
117
|
+
readonly tag: 'ProvideLayer';
|
|
118
|
+
}>): void;
|
|
119
|
+
protected processProvideService(instr: Extract<AnyInstruction, {
|
|
120
|
+
readonly tag: 'ProvideService';
|
|
121
|
+
}>): void;
|
|
122
|
+
protected processSetConcurrencyLevel(instr: Extract<AnyInstruction, {
|
|
123
|
+
readonly tag: 'SetConcurrencyLevel';
|
|
124
|
+
}>): void;
|
|
125
|
+
protected processSetInterruptStatus(instr: Extract<AnyInstruction, {
|
|
126
|
+
readonly tag: 'SetInterruptStatus';
|
|
127
|
+
}>): void;
|
|
128
|
+
protected processWait(instr: Extract<AnyInstruction, {
|
|
129
|
+
readonly tag: 'Wait';
|
|
130
|
+
}>): Maybe.Just<import("@/Fx/Instruction.js").Instruction<any, any, any>> | undefined;
|
|
131
|
+
protected uncaughtException(error: unknown): void;
|
|
132
|
+
protected pushFrame(frame: Frame): void;
|
|
133
|
+
protected popFrame(): Frame | undefined;
|
|
134
|
+
protected continueWith(value: any): void | Maybe.Just<import("@/Fx/Instruction.js").GetFiberContext | import("@/Fx/Instruction.js").GetInterruptStatus | import("@/Fx/Instruction.js").GetTrace | import("@/Fx/Instruction.js").BothFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").EitherFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").FromCause<never> | import("@/Fx/Instruction.js").FromLazy<any> | import("@/Fx/Instruction.js").Now<any> | import("@/Fx/Instruction.js").Access<never, never, never, any> | import("@/Fx/Instruction.js").AddTrace<never, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, never, any> | import("@/Fx/Instruction.js").FlatMap<never, never, any, never, never, any> | import("@/Fx/Instruction.js").Fork<never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, never, any> | import("@/Fx/Instruction.js").LazyFx<never, never, any> | import("@/Fx/Instruction.js").MapFx<never, never, any, any> | import("@/Fx/Instruction.js").Match<never, never, any, never, never, any, never, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").Provide<any, never, any> | import("@/Fx/Instruction.js").ProvideService<never, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, never, any, never, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, never, any> | import("@/Fx/Instruction.js").Wait<never, never, any> | import("@/Fx/Instruction.js").BothFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").EitherFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FromCause<any> | import("@/Fx/Instruction.js").Access<any, any, any, any> | import("@/Fx/Instruction.js").AddTrace<any, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FlatMap<any, any, any, any, any, any> | import("@/Fx/Instruction.js").Fork<any, any, any> | import("@/Fx/Instruction.js").GetFiberRef<any, any, any> | import("@/Fx/Instruction.js").LazyFx<any, any, any> | import("@/Fx/Instruction.js").MapFx<any, any, any, any> | import("@/Fx/Instruction.js").Match<any, any, any, any, any, any, any, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").Provide<any, any, any> | import("@/Fx/Instruction.js").ProvideService<any, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, any, any, any, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, any, any> | import("@/Fx/Instruction.js").Wait<any, any, any> | import("@/Fx/Instruction.js").Access<never, never, any, any> | import("@/Fx/Instruction.js").AddTrace<never, any, any> | import("@/Fx/Instruction.js").BothFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").EitherFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, any, any> | import("@/Fx/Instruction.js").FlatMap<never, any, any, never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, any, any> | import("@/Fx/Instruction.js").LazyFx<never, any, any> | import("@/Fx/Instruction.js").MapFx<never, any, any, any> | import("@/Fx/Instruction.js").Match<never, any, any, never, any, any, never, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").ProvideService<never, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, any, any, never, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, any, any> | import("@/Fx/Instruction.js").Wait<never, any, any> | import("@/Fx/Instruction.js").Access<any, any, never, any> | import("@/Fx/Instruction.js").AddTrace<any, never, any> | import("@/Fx/Instruction.js").BothFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").EitherFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, never, any> | import("@/Fx/Instruction.js").FlatMap<any, never, any, any, never, any> | import("@/Fx/Instruction.js").GetFiberRef<any, never, any> | import("@/Fx/Instruction.js").LazyFx<any, never, any> | import("@/Fx/Instruction.js").MapFx<any, never, any, any> | import("@/Fx/Instruction.js").Match<any, never, any, any, never, any, any, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").ProvideService<any, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, never, any, any, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, never, any> | import("@/Fx/Instruction.js").Wait<any, never, any>>;
|
|
135
|
+
/**
|
|
136
|
+
* Unwind the stack to handle any exceptions
|
|
137
|
+
*/
|
|
138
|
+
protected unwindStack(cause: Cause.AnyCause): Maybe.Just<import("@/Fx/Instruction.js").GetFiberContext | import("@/Fx/Instruction.js").GetInterruptStatus | import("@/Fx/Instruction.js").GetTrace | import("@/Fx/Instruction.js").BothFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").EitherFx<never, never, any, never, never, any> | import("@/Fx/Instruction.js").FromCause<never> | import("@/Fx/Instruction.js").FromLazy<any> | import("@/Fx/Instruction.js").Now<any> | import("@/Fx/Instruction.js").Access<never, never, never, any> | import("@/Fx/Instruction.js").AddTrace<never, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, never, any> | import("@/Fx/Instruction.js").FlatMap<never, never, any, never, never, any> | import("@/Fx/Instruction.js").Fork<never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, never, any> | import("@/Fx/Instruction.js").LazyFx<never, never, any> | import("@/Fx/Instruction.js").MapFx<never, never, any, any> | import("@/Fx/Instruction.js").Match<never, never, any, never, never, any, never, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, never, any, any> | import("@/Fx/Instruction.js").Provide<any, never, any> | import("@/Fx/Instruction.js").ProvideService<never, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, never, any, never, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, never, any> | import("@/Fx/Instruction.js").Wait<never, never, any> | import("@/Fx/Instruction.js").BothFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").EitherFx<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FromCause<any> | import("@/Fx/Instruction.js").Access<any, any, any, any> | import("@/Fx/Instruction.js").AddTrace<any, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, any, any> | import("@/Fx/Instruction.js").FlatMap<any, any, any, any, any, any> | import("@/Fx/Instruction.js").Fork<any, any, any> | import("@/Fx/Instruction.js").GetFiberRef<any, any, any> | import("@/Fx/Instruction.js").LazyFx<any, any, any> | import("@/Fx/Instruction.js").MapFx<any, any, any, any> | import("@/Fx/Instruction.js").Match<any, any, any, any, any, any, any, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, any, any, any> | import("@/Fx/Instruction.js").Provide<any, any, any> | import("@/Fx/Instruction.js").ProvideService<any, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, any, any, any, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, any, any> | import("@/Fx/Instruction.js").Wait<any, any, any> | import("@/Fx/Instruction.js").Access<never, never, any, any> | import("@/Fx/Instruction.js").AddTrace<never, any, any> | import("@/Fx/Instruction.js").BothFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").DeleteFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").EitherFx<never, any, any, never, any, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, never, any, any> | import("@/Fx/Instruction.js").FlatMap<never, any, any, never, any, any> | import("@/Fx/Instruction.js").GetFiberRef<never, any, any> | import("@/Fx/Instruction.js").LazyFx<never, any, any> | import("@/Fx/Instruction.js").MapFx<never, any, any, any> | import("@/Fx/Instruction.js").Match<never, any, any, never, any, any, never, any, any> | import("@/Fx/Instruction.js").ModifyFiberRef<never, any, any, any> | import("@/Fx/Instruction.js").ProvideService<never, any, any, any> | import("@/Fx/Instruction.js").ProvideLayer<never, any, any, never, any, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<never, any, any> | import("@/Fx/Instruction.js").SetInterruptStatus<never, any, any> | import("@/Fx/Instruction.js").Wait<never, any, any> | import("@/Fx/Instruction.js").Access<any, any, never, any> | import("@/Fx/Instruction.js").AddTrace<any, never, any> | import("@/Fx/Instruction.js").BothFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").DeleteFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").EitherFx<any, never, any, any, never, any> | import("@/Fx/Instruction.js").FiberRefLocally<any, any, any, any, never, any> | import("@/Fx/Instruction.js").FlatMap<any, never, any, any, never, any> | import("@/Fx/Instruction.js").GetFiberRef<any, never, any> | import("@/Fx/Instruction.js").LazyFx<any, never, any> | import("@/Fx/Instruction.js").MapFx<any, never, any, any> | import("@/Fx/Instruction.js").Match<any, never, any, any, never, any, any, never, any> | import("@/Fx/Instruction.js").ModifyFiberRef<any, never, any, any> | import("@/Fx/Instruction.js").ProvideService<any, never, any, any> | import("@/Fx/Instruction.js").ProvideLayer<any, never, any, any, never, any> | import("@/Fx/Instruction.js").SetConcurrencyLevel<any, never, any> | import("@/Fx/Instruction.js").SetInterruptStatus<any, never, any> | import("@/Fx/Instruction.js").Wait<any, never, any>> | undefined;
|
|
139
|
+
protected running(): void;
|
|
140
|
+
protected suspended(): void;
|
|
141
|
+
protected done(exit: Exit.Exit<Fx.ErrorsOf<F>, Fx.OutputOf<F>>): void;
|
|
142
|
+
protected notifyObservers(exit: Exit.Exit<Fx.ErrorsOf<F>, Fx.OutputOf<F>>): void;
|
|
143
|
+
protected reportFailure(cause: Cause.AnyCause): void;
|
|
144
|
+
protected setTimer: (f: (time: Time) => void) => Disposable;
|
|
145
|
+
protected getInterruptStatus: () => boolean;
|
|
146
|
+
protected pushPopFiberRef: (ref: FiberRef.AnyFiberRef, value: any) => void;
|
|
147
|
+
protected popFiberRef: (ref: FiberRef.AnyFiberRef) => void;
|
|
148
|
+
protected getOrCreateCurrentEnv(): Env.Env<any>;
|
|
149
|
+
protected getInternalFiberRef<R, E, A>(ref: FiberRef.FiberRef<R, E, A>): Stack<A>;
|
|
150
|
+
protected getCurrentTrace(): Trace.Trace;
|
|
151
|
+
protected withSupervisor: <A>(f: (s: Supervisor<A>) => void) => void;
|
|
152
|
+
}
|
|
153
|
+
export {};
|
|
154
|
+
//# sourceMappingURL=FiberRuntime.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FiberRuntime.d.ts","sourceRoot":"","sources":["../../src/FiberRuntime/FiberRuntime.ts"],"names":[],"mappings":"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"}
|