Skip to main content

ILoaderServices Interface

Services and properties used by and exposed by the loader

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/container-loader/legacy.

For more information about our API support guarantees, see here.

Signature

export interface ILoaderServices

Properties

PropertyAlertsModifiersTypeDescription
codeLoaderBetareadonlyICodeDetailsLoaderThe code loader handles loading the necessary code for running a container once it is loaded.
documentServiceFactoryBetareadonlyIDocumentServiceFactoryThe document service factory take the Fluid url provided by the resolved url and constructs all the necessary services for communication with the container's server.
optionsBetareadonlyILoaderOptionsA property bag of options used by various layers to control features
protocolHandlerBuilderBetaoptional, readonlyProtocolHandlerBuilderOptional property for allowing the container to use a custom protocol implementation for handling the quorum and/or the audience.
scopeBetareadonlyFluidObjectScope is provided to all container and is a set of shared services for container's to integrate with their host environment.
subLoggerBetareadonlyITelemetryLoggerExtThe logger downstream consumers should construct their loggers from
urlResolverBetareadonlyIUrlResolverThe url resolver used by the loader for resolving external urls into Fluid urls such that the container specified by the external url can be loaded.

Property Details

codeLoader

The code loader handles loading the necessary code for running a container once it is loaded.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly codeLoader: ICodeDetailsLoader;

Type: ICodeDetailsLoader

documentServiceFactory

The document service factory take the Fluid url provided by the resolved url and constructs all the necessary services for communication with the container's server.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly documentServiceFactory: IDocumentServiceFactory;

Type: IDocumentServiceFactory

options

A property bag of options used by various layers to control features

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly options: ILoaderOptions;

Type: ILoaderOptions

protocolHandlerBuilder

Optional property for allowing the container to use a custom protocol implementation for handling the quorum and/or the audience.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly protocolHandlerBuilder?: ProtocolHandlerBuilder;

Type: ProtocolHandlerBuilder

scope

Scope is provided to all container and is a set of shared services for container's to integrate with their host environment.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly scope: FluidObject;

Type: FluidObject

subLogger

The logger downstream consumers should construct their loggers from

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly subLogger: ITelemetryLoggerExt;

Type: ITelemetryLoggerExt

urlResolver

The url resolver used by the loader for resolving external urls into Fluid urls such that the container specified by the external url can be loaded.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly urlResolver: IUrlResolver;

Type: IUrlResolver