Coder Social home page Coder Social logo

azurenetq's Introduction

AzureNetQ Logo

A Nice .NET API for Microsoft Azure Service Bus & Service Bus for Windows. Please note that documentation is currently under construction

Goals:

  1. To make working with Microsoft Service Bus on .NET as easy as possible.
  2. To build an API that is close to interchangable with EasyNetQ.

To connect to Service Bus...

var bus = AzureBusFactory.CreateBus("Endpoint=sb://servicebus/ServiceBusDefaultNamespace;StsEndpoint=https://servicebus:10355/ServiceBusDefaultNamespace;RuntimePort=10354;ManagementPort=10355");

To publish a message...

bus.Publish(message);

To subscribe to a message...

bus.Subscribe<MyMessage>(msg => Console.WriteLine(msg.Text));

Remote procedure call...

var request = new TestRequestMessage {Text = "Hello from the client! "};
bus.Request<TestRequestMessage, TestResponseMessage>(request, response => 
    Console.WriteLine("Got response: '{0}'", response.Text));

RPC server...

bus.Respond<TestRequestMessage, TestResponseMessage>(request => 
	new TestResponseMessage{ Text = request.Text + " all done!" });

Getting started

Just open AzureNetQ.sln in VisualStudio 2013 and build.

All the required dependencies for the solution file to build the software are included. To run the explicit tests that send messages you will have to be running the AzureNetQ.Tests.SimpleService application and have a working Service Bus for Windows install (Blog post coming)

Mono specific

Unlike EasyNetQ, AzureNetQ has not yet been tested on Mono. If you would like to help with this, please get in touch with @roysvork on twitter!

azurenetq's People

Contributors

mikehadlow avatar zidad avatar fhalim avatar pliner avatar ericatwork avatar jeffdoolittle avatar samcook avatar jhuntsman avatar stefansedich avatar jonnii avatar danielwertheim avatar chrisedwards avatar jamescrowley avatar ccellar avatar philiphoy avatar micdenny avatar jvandertil avatar uvcrew avatar esergueev avatar etiennet avatar danielwhite avatar bressain avatar taylorwood avatar mwissman avatar ahazelwood avatar sundstei avatar grumpydev avatar sekharpanja avatar serialseb avatar kjnilsson avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.