Fix error in comment
This commit is contained in:
parent
6d7e515ea4
commit
e6d93d9350
|
@ -49,7 +49,7 @@ class WebSocketHandler(tornado.web.RequestHandler):
|
||||||
Web Sockets are not standard HTTP connections. The "handshake" is HTTP,
|
Web Sockets are not standard HTTP connections. The "handshake" is HTTP,
|
||||||
but after the handshake, the protocol is message-based. Consequently,
|
but after the handshake, the protocol is message-based. Consequently,
|
||||||
most of the Tornado HTTP facilities are not available in handlers of this
|
most of the Tornado HTTP facilities are not available in handlers of this
|
||||||
type. The only communication methods available to you are send_message()
|
type. The only communication methods available to you are write_message()
|
||||||
and close(). Likewise, your request handler class should
|
and close(). Likewise, your request handler class should
|
||||||
implement open() method rather than get() or post().
|
implement open() method rather than get() or post().
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue