File: remote_thr.hs

package info (click to toggle)
haskell-zeromq4-haskell 0.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: haskell: 1,932; makefile: 21
file content (27 lines) | stat: -rwxr-xr-x 682 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import Control.Monad
import Control.Concurrent
import System.IO
import System.Exit
import System.Environment
import System.ZMQ4.Monadic
import qualified Data.ByteString as SB

main :: IO ()
main = do
    args <- getArgs
    when (length args /= 3) $ do
        hPutStrLn stderr usage
        exitFailure
    let connTo  = args !! 0
        size    = read $ args !! 1
        count   = read $ args !! 2
        message = SB.replicate size 0x65
    runZMQ $ do
        s <- socket Pub
        connect s connTo
        replicateM_ count $ send s [] message
        liftIO $ threadDelay 10000000

usage :: String
usage = "usage: remote_thr <connect-to> <message-size> <message-count>"