Documentation
    Preparing search index...

    Interface AnnotationMeasurementServiceInterface

    Interface for annotation measurement service operations.

    interface AnnotationMeasurementServiceInterface {
        createAnnotationMeasurement(
            options: CreateAnnotationMeasurementOptions,
        ): Promise<CreateAnnotationMeasurementResult>;
        deleteAnnotationMeasurement(
            id: AnnotationMeasurement.AnnotationMeasurementId,
        ): Promise<DeleteAnnotationResult>;
        observeAnnotationMeasurements(
            options: ObserveAnnotationMeasurementsOptions,
        ): (
            callback: (deferredResult: ObserveAnnotationMeasurementResult) => void,
        ) => ObservedQueryHandle;
        updateAnnotationMeasurement(
            options: UpdateAnnotationMeasurementOptions,
        ): Promise<UpdateAnnotationMeasurementResult>;
    }

    Implemented by

    Index

    Methods

    • Observe measurement annotations for a given asset instance.

      Parameters

      • options: ObserveAnnotationMeasurementsOptions

      Returns (
          callback: (deferredResult: ObserveAnnotationMeasurementResult) => void,
      ) => ObservedQueryHandle