TCP Node Catalog
Generated category
TCP Node Catalog
Generated from 5 catalog nodes in Web/TCP.
Nodes in this category
Showing 5 of 5 generated node docs.
TCP Close
Web/TCPCloses an open TCP connection gracefully
TCP Connect
Web/TCPOpens a TCP connection to a remote host. Triggers on_connect with the session, then invokes the on-message handler for each incoming data chunk. Holds execution until the connection closes, then triggers on_close.
TCP Listen
Web/TCPBinds a TCP listener on a port. Fires on_listening, then accepts incoming connections and invokes the handler for each. Holds execution until closed or timed out, then triggers on_close.
TCP Send
Web/TCPSends data through an open TCP connection
TCP Server
Web/TCPBinds a TCP server. Typed lifecycle events are exposed as pins; incoming data chunks are delivered to the referenced on-message handler.