hbro-0.9.1.0: Minimal KISS compliant browser

Safe HaskellSafe-Infered

Hbro.Socket

Synopsis

Documentation

open :: K ()Source

Open a response-socket at configured location, named hbro.pid, and start listening for commands

close :: K ()Source

Close the response socket by sending it the command QUIT. Typically called when exiting application.

readCommands :: Socket Rep -> K ()Source

Listen for incoming requests from response socket. Parse received commands and feed the corresponding callback, if any.

socketFile :: ProcessID -> String -> StringSource

Return the socket path to use for the given browser's process ID.

sendCommand :: String -> String -> K StringSource

Send a single command (through a Request socket) to the given Response socket, and return the answer.

sendCommandToAll :: String -> K [String]Source

Same as sendCommand, but for all running instances of the browser.