Skip to content

2.1 RabbitMQ Integration Guide

Márcio Azevedo edited this page May 2, 2016 · 9 revisions

RabbitMQ - FSharp.DataProcessingPipelines.RabbitMQ. To start using (assuming you already have a RabbitMQ instance) follow this steps:

  1. Install FSharp.DataProcessingPipelines.RabbitMQ package and its dependencies (via NuGet or Paket)

  2. Add a F# module to your F# project:

     open System
     open System.Collections.Generic
     open System.Globalization
     open System.Threading
     open RabbitMQ.Client
     open EasyNetQ
     open FSharp.DataProcessingPipelines.Core
     open FSharp.DataProcessingPipelines.Core.Messages
     open FSharp.DataProcessingPipelines.Core.Pipes
     open FSharp.DataProcessingPipelines.Core.Filters
     open FSharp.DataProcessingPipelines.Core.Runners
     open FSharp.DataProcessingPipelines.Infrastructure.RabbitMQ
    
Clone this wiki locally