A .NET driver for Beanstalkd.
Note: until the driver reaches 1.0, the API is still likely to change between commits.
Apache 2.0
Currently supports the full 1.3 beanstalkd protocol.
String data payload
// connect to beanstalkd using(var client = new BeanstalkClient(host, port)) { // put some data var put = client.PutString("foo"); // reserve data from queue var reserve = client.ReserveString(); Console.Writeline("data: {0}", reserve.Data); // delete reserved data from queue client.Delete(reserve.JobId); }
Binary payload
// connect to beanstalkd using(var client = new BeanstalkClient(host, port)) { // put some data var put = client.Put(100, 0, 120, data, data.Length); // reserve data from queue var reserve = client.Reserve(); // delete reserved data from queue client.Delete(reserve.JobId); }
Patches are welcome and will likely be accepted. By submitting a patch you assign the copyright to me, Arne F. Claassen. This is necessary to simplify the number of copyright holders should it become necessary that the copyright be re-assigned or the code re-licensed. The code will always be available under an OSI approved license.
- libBeanstalk.NET, a Beanstalkd client for .NET/mono ( http://www.claassen.net/geek/blog/2010/08/libbeanstalk-net-a-beanstalkd-client-for-netmono.html )
- Add POCO producers and consumers with configurable serializers
- Add IObservable support
- Arne F. Claassen (sdether)