Sindbad~EG File Manager
import type { Document } from 'bson';
import type { Collection } from '../../collection';
import type { Server } from '../../sdam/server';
import type { ClientSession } from '../../sessions';
import type { Callback } from '../../utils';
import { AbstractCallbackOperation } from '../operation';
/** @internal */
export class DropSearchIndexOperation extends AbstractCallbackOperation<void> {
constructor(private readonly collection: Collection, private readonly name: string) {
super();
}
executeCallback(
server: Server,
session: ClientSession | undefined,
callback: Callback<void>
): void {
const namespace = this.collection.fullNamespace;
const command: Document = {
dropSearchIndex: namespace.collection
};
if (typeof this.name === 'string') {
command.name = this.name;
}
server.command(namespace, command, { session }, err => {
if (err) {
callback(err);
return;
}
callback();
});
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists