From bb5efd3c67fdc19036e18b8ca9217c3859eac7ac Mon Sep 17 00:00:00 2001 From: Owen Green Date: Wed, 20 May 2020 18:00:42 +0100 Subject: [PATCH] Add dump and print messages to dataset --- release-packaging/Classes/FluidDataSet.sc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/release-packaging/Classes/FluidDataSet.sc b/release-packaging/Classes/FluidDataSet.sc index 06499ea..b0253a5 100644 --- a/release-packaging/Classes/FluidDataSet.sc +++ b/release-packaging/Classes/FluidDataSet.sc @@ -85,6 +85,16 @@ FluidDataSet : FluidManipulationClient { this.prSendMsg(\clear,[],action); } + print { |action| + action ?? {action = postit}; + this.prSendMsg(\print,[],action,[string(FluidMessageResponse,_,_)]); + } + + dump { |action| + action ?? {action = postit}; + this.prSendMsg(\dump,[],action,[string(FluidMessageResponse,_,_)]); + } + free { serverCaches.remove(server,id); super.free;