Represents a done state in the builder process. This class is used when the builder has finished and the result is available.
Constructor
Creates a new instance of the BuilderDone class. |
Presentationconstructor(
readonly tag: string,
readonly result: TResult,
readonly fromCache: boolean = false,
readonly afterEmit?: (() => void) | undefined
): BuilderDone<TResult>;
|
ParametersName | Type | Description |
---|
r tag | string | | r result | TResult | | r fromCache | boolean | Whether the result was restored from the cache. | r afterEmit | (() => void) | undefined | A function to execute after the result has been emitted. |
|
Properties
Name | Type | Description |
---|
state r | "done" | |