Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jtdowney/beanstalk-sharp

A .NET client for beanstalkd
https://github.com/jtdowney/beanstalk-sharp

Last synced: 3 months ago
JSON representation

A .NET client for beanstalkd

Awesome Lists containing this project

README

        

Overview
========

Beanstalk-sharp is a C#/.NET client library for [beanstalkd](http://github.com/kr/beanstalkd). Currently it only implements commands to produce new messages.

Example:

using (var beanstalk = new BeanstalkConnection(IPAddress.Loopback, 11300))
{
beanstalk.Put("hello");
}

To do
=====

* Add commands for consuming messages