/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { ICollection, IContext, IQueuedMessage, IPartitionLambda } from "@fluidframework/server-services-core"; /** * @internal */ export declare class CopierLambda implements IPartitionLambda { private readonly rawOpCollection; protected context: IContext; private pendingJobs; private pendingOffset; private currentJobs; constructor(rawOpCollection: ICollection, context: IContext); /** * {@inheritDoc IPartitionLambda.handler} */ handler(message: IQueuedMessage): undefined; close(): void; private sendPending; private processMongoCore; } //# sourceMappingURL=lambda.d.ts.map