From 3bbde105f8a70cb5c71dc4c9073c1de193c6a688 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 14 Oct 2024 09:39:28 +0200 Subject: [PATCH] remove old "buffer" message Change-Id: I010f535ec746ef15ccfc2929a2e62ccb83894c33 --- frappy/protocol/messages.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/frappy/protocol/messages.py b/frappy/protocol/messages.py index 0fca5755..b438592c 100644 --- a/frappy/protocol/messages.py +++ b/frappy/protocol/messages.py @@ -45,11 +45,6 @@ WRITEREQUEST = 'change' # +module[:parameter] +json_value # send with the read back value WRITEREPLY = 'changed' -# +module[:parameter] +json_value -BUFFERREQUEST = 'buffer' -# +module[:parameter] +json_value # send with the read back value -BUFFERREPLY = 'buffered' - # +module[:parameter] -> NO direct reply, calls POLL internally! READREQUEST = 'read' READREPLY = 'reply' # See Issue 54 @@ -79,7 +74,6 @@ REQUEST2REPLY = { DISABLEEVENTSREQUEST: DISABLEEVENTSREPLY, COMMANDREQUEST: COMMANDREPLY, WRITEREQUEST: WRITEREPLY, - BUFFERREQUEST: BUFFERREPLY, READREQUEST: READREPLY, HEARTBEATREQUEST: HEARTBEATREPLY, HELPREQUEST: HELPREPLY,