Skip to main content
Glama
executeSchedule.ts•1.24 kB
import { Subscription } from '../Subscription'; import { SchedulerAction, SchedulerLike } from '../types'; export function executeSchedule( parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay: number, repeat: true ): void; export function executeSchedule( parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay?: number, repeat?: false ): Subscription; export function executeSchedule( parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay = 0, repeat = false ): Subscription | void { const scheduleSubscription = scheduler.schedule(function (this: SchedulerAction<any>) { work(); if (repeat) { parentSubscription.add(this.schedule(null, delay)); } else { this.unsubscribe(); } }, delay); parentSubscription.add(scheduleSubscription); if (!repeat) { // Because user-land scheduler implementations are unlikely to properly reuse // Actions for repeat scheduling, we can't trust that the returned subscription // will control repeat subscription scenarios. So we're trying to avoid using them // incorrectly within this library. return scheduleSubscription; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/samihalawa/brevo-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server