Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jtdowney/beanstalk-sharp
- Owner: jtdowney
- Created: 2010-04-27T18:05:37.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-04-28T18:32:02.000Z (over 14 years ago)
- Last Synced: 2023-04-10T00:18:47.634Z (almost 2 years ago)
- Language: C#
- Homepage:
- Size: 92.8 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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