I would like to implement the following scenario in Haskell. I have an enumerable set of 'events' defined like this:
data MyEvent = Event1
| Event2
| Event3
I want to define handlers for these events to be used in the following way:
eventLoop :: Handler h => h -> IO ()
eventLoop currentHandler = do
event <- getNextEvent
nextHandler <- currentHandler event
eventLoop nextHandler
Basically I want handlers to be able to return themselves or another handler to handle future events. It's the type of handlers I'm not sure about.
My first idea was to define handlers as simple functions, but their type would get infinitely long:
myHandler :: Event -> IO (Event -> IO (Event -> ... ))
I suspect this can be solved with a type class, where each handler would need to implement a function to handle events (which in turn returns another type of the same class), but the recursive definition would still apply. Can someone more well versed in the type system point me in the right direction? I also welcome any different takes on this.
Thanks!
MyHandler :: [Event] -> [IO ()]andeventLoop :: ([Event] -> [IO ()]) -> IO ()might be a better approach. – RnMss Feb 28 at 7:25