From 380c8108eb92b7d9c6e538058727383f58426adc 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 0fca575..b438592 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,