Skip to content 

IContainerRuntimeDirtyable Interface

Packages > @fluidframework/container-runtime-definitions > IContainerRuntimeDirtyable

Represents the runtime of the container with the ability to sense whether its message can change its dirty state

Signature:

export interface IContainerRuntimeDirtyable extends IProvideContainerRuntimeDirtyable 

Extends: IProvideContainerRuntimeDirtyable

Methods

List of methods of this class
Method Description
isMessageDirtyable(message) Will return true for any message that affects the dirty state of this document. This function can be used to filter out any runtime operations that should not be affecting whether or not the IFluidDataStoreRuntime.isDocumentDirty call returns true/false

Methods

isMessageDirtyable

Will return true for any message that affects the dirty state of this document. This function can be used to filter out any runtime operations that should not be affecting whether or not the IFluidDataStoreRuntime.isDocumentDirty call returns true/false

Signature:

isMessageDirtyable(message: ISequencedDocumentMessage): boolean;

Parameters

List of parameters
Parameter Type Description
message ISequencedDocumentMessage

Returns:

boolean