Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

sdether/libBeanstalk.NET

Repository files navigation

libBeanstalk.NET 0.6

A .NET driver for Beanstalkd.

Note: until the driver reaches 1.0, the API is still likely to change between commits.

License

Apache 2.0

Status

Currently supports the full 1.3 beanstalkd protocol.

Usage

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

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.

Articles

Roadmap

  • Add POCO producers and consumers with configurable serializers
  • Add IObservable support

Contributors

  • Arne F. Claassen (sdether)

About

A .NET library for using Beanstalkd

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.