Skip to main content

publish

method Channel.prototype.publish
Jump to headingChannel.prototype.publish(message: unknown): void

Publish a message to any subscribers to the channel. This will trigger message handlers synchronously so they will execute within the same context.

import diagnostics_channel from 'node:diagnostics_channel';

const channel = diagnostics_channel.channel('my-channel');

channel.publish({
  some: 'message',
});

Parameters Jump to heading

Jump to headingmessage: unknown

The message to send to the channel subscribers

Return Type Jump to heading

void
Back to top