From e762adc018c08bbb1c481af7a9065ed3165dbe2d Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 15 Jun 2017 09:22:52 +0200 Subject: [PATCH] Updated Hub protocol - Removed blurb about websockets --- specs/HubProtocol.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/HubProtocol.md b/specs/HubProtocol.md index 7797f855f7..67f5d0fe62 100644 --- a/specs/HubProtocol.md +++ b/specs/HubProtocol.md @@ -10,7 +10,7 @@ The SignalR Protocol is a protocol for two-way RPC over any Message-based transp ## Transport Requirements -The SignalR Protocol requires the following attributes from the underlying transport. The protocol was primarily designed for use with WebSockets, though it is relatively straightforward to build an adaptor layer for a different transport. +The SignalR Protocol requires the following attributes from the underlying transport. * Reliable, in-order, delivery of messages - Specifically, the SignalR protocol provides no facility for retransmission or reordering of messages. If that is important to an application scenario, the application must either use a transport that guarantees it (i.e. TCP) or provide their own system for managing message order.