]> gerrit.simantics Code Review - simantics/platform.git/blob - AuditLogging/Server.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / AuditLogging / Server.scl
1 import "Map" as Map
2
3 importJava "org.simantics.audit.AuditLogging" where
4     register :: String -> <Proc> String
5     log :: String -> Map.T String a -> <Proc, Exception> ()
6     error :: String -> Map.T String a -> <Proc, Exception> ()
7     trace :: String -> Map.T String a -> <Proc, Exception> ()
8     getLogEvents :: String -> String -> String -> String -> <Proc, Exception> [String]
9
10 importJava "org.simantics.audit.server.AuditLoggingServer" where
11     start :: String -> Integer -> <Proc> ()