method Channel.prototype.unsubscribe
Usage
import { Channel } from "node:diagnostics_channel";
Remove a message handler previously registered to this channel with channel.subscribe(onMessage).
import diagnostics_channel from 'node:diagnostics_channel'; const channel = diagnostics_channel.channel('my-channel'); function onMessage(message, name) { // Received data } channel.subscribe(onMessage); channel.unsubscribe(onMessage);