Releases2
Frequency1 day 1 hour
Last Release
jack is a beanstalkd (http://kr.github.io/beanstalkd/) client written in F#.
Install:
nuget install jack
Usage:
open jack
let client = Connection.parseAddress "localhost:11300" |> Client.connect
client.useTube "testTube" |> ignore
client.put 1000 0 30 "my message" |> ignore // priority=1000, delay=0, ttr=30 seconds
client.watch "testTube" |> ignore
let result = client.reserveWithTimeout 5
match result with
| Success (jobId, payload) ->
printfn "jobId=%i payload=%s" jobId payload
client.delete jobId |> ignore
| Failure msg -> failwith msg
Subscribe above to receive notifications when new versions are released.
| Version | Date | Stability Stability is determined by the version string and my be inaccurate. | |
|---|---|---|---|
| 1.0.1 | Stable | ||
| 1.0.0 | Stable |