UNPKG

@gluestack-v2/glue-plugin-service-gateway

Version:

Gluestack V2 service Gateway Plugin

44 lines (38 loc) 885 B
// @ts-nocheck const { default: ServerSDK } = require('@project/server-sdk'); class Context { _molecularCtx; params; call; mcall; sdk; constructor(ctx) { this._molecularCtx = ctx; this.params = ctx.params; this.call = ctx.call; this.mcall = ctx.mcall; this.sdk = ServerSDK; } events = { emit: (eventName, params) => { return this._molecularCtx.call('events.emit', { eventName: eventName, params: params, }); }, }; queues = { push: (functionName, params) => { //Console to debug // eslint-disable-next-line no-console console.log('Queues Data', { functionName: functionName, params: params, }); return this._molecularCtx.call('queues.push', { data: { functionName: functionName, params: params }, }); }, }; } module.exports = Context;