From f050c7f1de1fe03e2253f408445a69e9402f60ee Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 16 Jun 2016 11:00:01 -0400 Subject: Client-side: detect session timeout and ask the user to reload --- tests/timeout.ur | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/timeout.ur (limited to 'tests/timeout.ur') diff --git a/tests/timeout.ur b/tests/timeout.ur new file mode 100644 index 00000000..d96b42bd --- /dev/null +++ b/tests/timeout.ur @@ -0,0 +1,22 @@ +table listeners : { Ch : channel unit } + +fun ping () = + queryI1 (SELECT * FROM listeners) + (fn r => send r.Ch ()) + +fun main () = + ch <- channel; + dml (INSERT INTO listeners(Ch) VALUES ({[ch]})); + count <- source 0; + return + + + -- cgit v1.2.3