Half-Duplex
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://statuscodefyi.com/iframe/glossary/half-duplex/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://statuscodefyi.com/glossary/half-duplex/
Add a dynamic SVG badge to your README or docs.
[](https://statuscodefyi.com/glossary/half-duplex/)
Use the native HTML custom element.
A communication mode where data can flow in both directions between two endpoints, but only in one direction at a time. Classic HTTP/1.1 request-response is half-duplex: the client sends a complete request, then waits for the server's complete response before the next exchange can begin. FTP's control channel also operates half-duplex. The alternating nature of half-duplex limits throughput for high-bandwidth bidirectional workloads, which is why WebSocket and HTTP/2 introduced full-duplex capabilities.