method MessagePort.postMessage
Jump to headingMessagePort.postMessage(message: any,transfer: Transferable[],): voidPosts a message through the channel. Objects listed in transfer are transferred, not just cloned, meaning that they are no longer usable on the sending side.
Throws a "DataCloneError" DOMException if transfer contains duplicate objects or port, or if message could not be cloned.
Parameters Jump to heading
Jump to headingmessage: anyJump to headingtransfer: Transferable[]Return Type Jump to heading
voidJump to headingMessagePort.postMessage(message: any,options?: StructuredSerializeOptions,): voidParameters Jump to heading
Jump to headingmessage: anyoptional
Jump to headingoptions: StructuredSerializeOptionsReturn Type Jump to heading
void