MCPcopy Create free account
hub / github.com/parse-community/parse-server / handler

Method handler

src/Adapters/MessageQueue/EventEmitterMQ.js:38–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36 subscribe(channel: string): void {
37 unsubscribe(channel);
38 const handler = message => {
39 this.emit('message', channel, message);
40 };
41 subscriptions.set(channel, handler);
42 this.emitter.on(channel, handler);
43 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected