RuntimeHeaders Enum
Accepted header keys for requests coming to the runtime.
Signature
export declare enum RuntimeHeaders
Flags
Flag | Description |
---|---|
externalRequest | True if the request is from an external app. Used for GC to handle scenarios where a data store is deleted and requested via an external app. |
viaHandle | True if the request is coming from an IFluidHandle. |
wait | True to wait for a data store to be created and loaded before returning it. |
externalRequest
True if the request is from an external app. Used for GC to handle scenarios where a data store is deleted and requested via an external app.
Signature
externalRequest = "externalRequest"
viaHandle
True if the request is coming from an IFluidHandle.
Signature
viaHandle = "viaHandle"
wait
True to wait for a data store to be created and loaded before returning it.
Signature
wait = "wait"