0.1.4Updated 6 months ago
export class RequestAnalytics {
  private constructor() {}

  static async Process(_request: Request, _ctx: InfinityContext) {
    try {

      // TODO: Do host-side analytics and task monitoring here

    } catch(e: any) {
      console.warn(`Host::RequestAnalytics error!`, e.message);
    };
  }
}