UNPKG

@hadesz/monitor

Version:

A complete server monitoring system with agents, server and dashboard

40 lines (32 loc) 996 B
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(); }); } }