├── .gitignore ├── Lib ├── Castle.Core.dll ├── Castle.Core.pdb ├── Castle.Core.xml ├── Castle.Windsor.dll ├── Castle.Windsor.pdb ├── Castle.Windsor.xml ├── Common.Logging.dll ├── Esent.Interop.dll ├── Esent.Interop.pdb ├── Esent.Interop.xml ├── Rhino.PersistentHashTable.dll ├── Rhino.PersistentHashTable.pdb ├── Rhino.Queues.dll ├── Rhino.Queues.pdb ├── Rhino.ServiceBus.Castle.dll ├── Rhino.ServiceBus.Castle.pdb ├── Rhino.ServiceBus.Host.exe ├── Rhino.ServiceBus.Host.pdb ├── Rhino.ServiceBus.dll ├── Rhino.ServiceBus.pdb ├── Wintellect.Threading.dll ├── Wintellect.Threading.xml ├── acknowledgements.txt ├── license.txt ├── log4net.dll └── log4net.xml ├── README.txt └── Source ├── E10_Message_modules ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── E10_Message_Modules.sln ├── Messages │ ├── HelloWorldMessage.cs │ ├── HelloWorldResponse.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── Utils │ ├── EchoMessageModule.cs │ ├── PrepareQueues.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Utils.csproj ├── E11_Restrictions_Message_count ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── E11_Restrictions_Message_Count.sln ├── Messages │ ├── HelloWorldMessage.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── Utils │ ├── PrepareQueues.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Utils.csproj ├── E12_Restrictions_Collection_count_in_messages ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── E12_Restrictions_Collection_count_in_messages.sln ├── Messages │ ├── HelloWorldMessage.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── Utils │ ├── PrepareQueues.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Utils.csproj ├── E1_Hello_world_using_MSMQ_as_transport ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Hello_World_using_MSMQ_as_transport.sln ├── Messages │ ├── HelloWorldMessage.cs │ ├── HelloWorldResponse.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── Utils │ ├── PrepareQueues.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Utils.csproj ├── E2_Hello_world_using_Rhino.Queues_as_transport ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── OtherHelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Hello_World_using_Rhino.Queues_as_transport.sln ├── Messages │ ├── HelloWorldMessage.cs │ ├── HelloWorldResponse.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── Utils │ ├── Properties │ └── AssemblyInfo.cs │ ├── QueueUtil.cs │ └── Utils.csproj ├── E3_PubSub_using_MSMQ_as_transport ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client2 │ ├── Client2.csproj │ ├── Client2BootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Messages │ ├── HelloWorldMessage.cs │ ├── HelloWorldResponse.cs │ ├── MessageWithoutSubscriber.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PubSub_using_MSMQ_as_transport.sln └── Utils │ ├── PrepareQueues.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Utils.csproj ├── E4_PubSub_using_Rhino.Queues_as_transport ├── Backend │ ├── Backend.csproj │ ├── BackendBootStrapper.cs │ ├── HelloWorldConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client │ ├── Client.csproj │ ├── ClientBootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Client2 │ ├── Client2.csproj │ ├── Client2BootStrapper.cs │ ├── HelloWorldResponseConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Messages │ ├── HelloWorldMessage.cs │ ├── HelloWorldResponse.cs │ ├── MessageWithoutSubscriber.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PubSub_using_Rhino.Queues_as_transport.sln └── Utils │ ├── Properties │ └── AssemblyInfo.cs │ ├── QueueUtil.cs │ └── Utils.csproj ├── E5_Sagas_using_MSMQ_as_transport ├── Barista │ ├── Barista.csproj │ ├── BaristaBootStrapper.cs │ ├── BaristaSaga.cs │ ├── BaristaState.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Cashier │ ├── Cashier.csproj │ ├── CashierBootStrapper.cs │ ├── NewOrderConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SubmitPaymentConsumer.cs │ └── app.config ├── Customer │ ├── Customer.csproj │ ├── CustomerBootStrapper.cs │ ├── CustomerController.cs │ ├── CustomerUserInterface.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── E5_Sagas_using_MSMQ_as_transport.sln ├── Messages │ ├── Barista │ │ └── DrinkReady.cs │ ├── Cashier │ │ ├── NewOrder.cs │ │ ├── PaymentComplete.cs │ │ ├── PaymentDue.cs │ │ ├── PrepareDrink.cs │ │ └── SubmitPayment.cs │ ├── DrinkSize.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Utils │ ├── PrepareQueues.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Utils.csproj └── acknowledgements.txt ├── E6_Sagas_using_Rhino.Queues_as_transport ├── Barista │ ├── Barista.csproj │ ├── BaristaBootStrapper.cs │ ├── BaristaSaga.cs │ ├── BaristaState.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Cashier │ ├── Cashier.csproj │ ├── CashierBootStrapper.cs │ ├── NewOrderConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SubmitPaymentConsumer.cs │ └── app.config ├── Customer │ ├── Customer.csproj │ ├── CustomerBootStrapper.cs │ ├── CustomerController.cs │ ├── CustomerUserInterface.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── E6_Sagas_using_Rhino.Queues_as_transport.sln ├── Messages │ ├── Barista │ │ └── DrinkReady.cs │ ├── Cashier │ │ ├── NewOrder.cs │ │ ├── PaymentComplete.cs │ │ ├── PaymentDue.cs │ │ ├── PrepareDrink.cs │ │ └── SubmitPayment.cs │ ├── DrinkSize.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Utils │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueUtil.cs │ └── Utils.csproj └── acknowledgements.txt ├── E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport ├── Barista │ ├── Barista.config │ ├── Barista.csproj │ ├── BaristaBootStrapper.cs │ ├── BaristaSaga.cs │ ├── BaristaState.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Cashier │ ├── Cashier.config │ ├── Cashier.csproj │ ├── CashierBootStrapper.cs │ ├── NewOrderConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SubmitPaymentConsumer.cs ├── Customer │ ├── Customer.config │ ├── Customer.csproj │ ├── CustomerBootStrapper.cs │ ├── CustomerController.cs │ ├── CustomerUserInterface.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DevelopmentEnvironment │ ├── DevelopmentEnvironment.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport.sln ├── Messages │ ├── Barista │ │ └── DrinkReady.cs │ ├── Cashier │ │ ├── NewOrder.cs │ │ ├── PaymentComplete.cs │ │ ├── PaymentDue.cs │ │ ├── PrepareDrink.cs │ │ └── SubmitPayment.cs │ ├── DrinkSize.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Utils │ ├── PrepareQueues.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Utils.csproj └── acknowledgements.txt ├── E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport ├── Barista │ ├── Barista.config │ ├── Barista.csproj │ ├── BaristaBootStrapper.cs │ ├── BaristaSaga.cs │ ├── BaristaState.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Cashier │ ├── Cashier.config │ ├── Cashier.csproj │ ├── CashierBootStrapper.cs │ ├── NewOrderConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SubmitPaymentConsumer.cs ├── Customer │ ├── Customer.config │ ├── Customer.csproj │ ├── CustomerBootStrapper.cs │ ├── CustomerController.cs │ ├── CustomerUserInterface.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DevelopmentEnvironment │ ├── DevelopmentEnvironment.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport.sln ├── Messages │ ├── Barista │ │ └── DrinkReady.cs │ ├── Cashier │ │ ├── NewOrder.cs │ │ ├── PaymentComplete.cs │ │ ├── PaymentDue.cs │ │ ├── PrepareDrink.cs │ │ └── SubmitPayment.cs │ ├── DrinkSize.cs │ ├── Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Utils │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueUtil.cs │ └── Utils.csproj └── acknowledgements.txt └── E9_Deployment_with_the_service_host ├── Barista ├── Barista.csproj ├── BaristaBootStrapper.cs ├── BaristaSaga.cs ├── BaristaState.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── Cashier ├── Cashier.csproj ├── CashierBootStrapper.cs ├── NewOrderConsumer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SubmitPaymentConsumer.cs └── app.config ├── Customer ├── Customer.csproj ├── CustomerBootStrapper.cs ├── CustomerController.cs ├── CustomerUserInterface.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── E9_Deployment_with_the_service_host.sln ├── Messages ├── Barista │ └── DrinkReady.cs ├── Cashier │ ├── NewOrder.cs │ ├── PaymentComplete.cs │ ├── PaymentDue.cs │ ├── PrepareDrink.cs │ └── SubmitPayment.cs ├── DrinkSize.cs ├── Messages.csproj └── Properties │ └── AssemblyInfo.cs ├── README.txt ├── Utils ├── PrepareQueues.cs ├── Properties │ └── AssemblyInfo.cs └── Utils.csproj └── acknowledgements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/.gitignore -------------------------------------------------------------------------------- /Lib/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Castle.Core.dll -------------------------------------------------------------------------------- /Lib/Castle.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Castle.Core.pdb -------------------------------------------------------------------------------- /Lib/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Castle.Core.xml -------------------------------------------------------------------------------- /Lib/Castle.Windsor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Castle.Windsor.dll -------------------------------------------------------------------------------- /Lib/Castle.Windsor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Castle.Windsor.pdb -------------------------------------------------------------------------------- /Lib/Castle.Windsor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Castle.Windsor.xml -------------------------------------------------------------------------------- /Lib/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Common.Logging.dll -------------------------------------------------------------------------------- /Lib/Esent.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Esent.Interop.dll -------------------------------------------------------------------------------- /Lib/Esent.Interop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Esent.Interop.pdb -------------------------------------------------------------------------------- /Lib/Esent.Interop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Esent.Interop.xml -------------------------------------------------------------------------------- /Lib/Rhino.PersistentHashTable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.PersistentHashTable.dll -------------------------------------------------------------------------------- /Lib/Rhino.PersistentHashTable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.PersistentHashTable.pdb -------------------------------------------------------------------------------- /Lib/Rhino.Queues.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.Queues.dll -------------------------------------------------------------------------------- /Lib/Rhino.Queues.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.Queues.pdb -------------------------------------------------------------------------------- /Lib/Rhino.ServiceBus.Castle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.ServiceBus.Castle.dll -------------------------------------------------------------------------------- /Lib/Rhino.ServiceBus.Castle.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.ServiceBus.Castle.pdb -------------------------------------------------------------------------------- /Lib/Rhino.ServiceBus.Host.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.ServiceBus.Host.exe -------------------------------------------------------------------------------- /Lib/Rhino.ServiceBus.Host.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.ServiceBus.Host.pdb -------------------------------------------------------------------------------- /Lib/Rhino.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.ServiceBus.dll -------------------------------------------------------------------------------- /Lib/Rhino.ServiceBus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Rhino.ServiceBus.pdb -------------------------------------------------------------------------------- /Lib/Wintellect.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Wintellect.Threading.dll -------------------------------------------------------------------------------- /Lib/Wintellect.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/Wintellect.Threading.xml -------------------------------------------------------------------------------- /Lib/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/acknowledgements.txt -------------------------------------------------------------------------------- /Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/license.txt -------------------------------------------------------------------------------- /Lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/log4net.dll -------------------------------------------------------------------------------- /Lib/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Lib/log4net.xml -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/README.txt -------------------------------------------------------------------------------- /Source/E10_Message_modules/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E10_Message_modules/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Backend/app.config -------------------------------------------------------------------------------- /Source/E10_Message_modules/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E10_Message_modules/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Client/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Client/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Client/Program.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Client/app.config -------------------------------------------------------------------------------- /Source/E10_Message_modules/E10_Message_Modules.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/E10_Message_Modules.sln -------------------------------------------------------------------------------- /Source/E10_Message_modules/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Messages/HelloWorldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Messages/HelloWorldResponse.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E10_Message_modules/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Utils/EchoMessageModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Utils/EchoMessageModule.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E10_Message_modules/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E10_Message_modules/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Backend/app.config -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Client/Program.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Client/app.config -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/E11_Restrictions_Message_Count.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/E11_Restrictions_Message_Count.sln -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E11_Restrictions_Message_count/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E11_Restrictions_Message_count/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Backend/app.config -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Client/Program.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Client/app.config -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/E12_Restrictions_Collection_count_in_messages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/E12_Restrictions_Collection_count_in_messages.sln -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E12_Restrictions_Collection_count_in_messages/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E12_Restrictions_Collection_count_in_messages/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Backend/app.config -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Client/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Client/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Client/Program.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Client/app.config -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Hello_World_using_MSMQ_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Hello_World_using_MSMQ_as_transport.sln -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Messages/HelloWorldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Messages/HelloWorldResponse.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E1_Hello_world_using_MSMQ_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E1_Hello_world_using_MSMQ_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/OtherHelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/OtherHelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Backend/app.config -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/Program.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Client/app.config -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Hello_World_using_Rhino.Queues_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Hello_World_using_Rhino.Queues_as_transport.sln -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/HelloWorldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/HelloWorldResponse.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs -------------------------------------------------------------------------------- /Source/E2_Hello_world_using_Rhino.Queues_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E2_Hello_world_using_Rhino.Queues_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Backend/app.config -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client/Program.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client/app.config -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client2/Client2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client2/Client2.csproj -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client2/Client2BootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client2/Client2BootStrapper.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client2/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client2/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client2/Program.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Client2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Client2/app.config -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Messages/HelloWorldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Messages/HelloWorldResponse.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Messages/MessageWithoutSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Messages/MessageWithoutSubscriber.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/PubSub_using_MSMQ_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/PubSub_using_MSMQ_as_transport.sln -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E3_PubSub_using_MSMQ_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E3_PubSub_using_MSMQ_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/Backend.csproj -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/BackendBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/BackendBootStrapper.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/HelloWorldConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/HelloWorldConsumer.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/Program.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Backend/app.config -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/Client.csproj -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/ClientBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/ClientBootStrapper.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/Program.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client/app.config -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Client2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Client2.csproj -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Client2BootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Client2BootStrapper.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/HelloWorldResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/HelloWorldResponseConsumer.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Program.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Client2/app.config -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/HelloWorldMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/HelloWorldMessage.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/HelloWorldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/HelloWorldResponse.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/MessageWithoutSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/MessageWithoutSubscriber.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/PubSub_using_Rhino.Queues_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/PubSub_using_Rhino.Queues_as_transport.sln -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs -------------------------------------------------------------------------------- /Source/E4_PubSub_using_Rhino.Queues_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E4_PubSub_using_Rhino.Queues_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/Barista.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/Barista.csproj -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/BaristaBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/BaristaBootStrapper.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/BaristaSaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/BaristaSaga.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/BaristaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/BaristaState.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/Program.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Barista/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Barista/app.config -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/Cashier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/Cashier.csproj -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/CashierBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/CashierBootStrapper.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/NewOrderConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/NewOrderConsumer.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/Program.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/SubmitPaymentConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/SubmitPaymentConsumer.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Cashier/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Cashier/app.config -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/Customer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/Customer.csproj -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/CustomerBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/CustomerBootStrapper.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/CustomerController.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/CustomerUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/CustomerUserInterface.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/Program.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Customer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Customer/app.config -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/E5_Sagas_using_MSMQ_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/E5_Sagas_using_MSMQ_as_transport.sln -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Barista/DrinkReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Barista/DrinkReady.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/NewOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/NewOrder.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/PaymentComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/PaymentComplete.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/PaymentDue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/PaymentDue.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/PrepareDrink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/PrepareDrink.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/SubmitPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Cashier/SubmitPayment.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/DrinkSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/DrinkSize.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E5_Sagas_using_MSMQ_as_transport/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E5_Sagas_using_MSMQ_as_transport/acknowledgements.txt -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/Barista.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/Barista.csproj -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/BaristaBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/BaristaBootStrapper.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/BaristaSaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/BaristaSaga.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/BaristaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/BaristaState.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/Program.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Barista/app.config -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/Cashier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/Cashier.csproj -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/CashierBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/CashierBootStrapper.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/NewOrderConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/NewOrderConsumer.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/Program.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/SubmitPaymentConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/SubmitPaymentConsumer.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Cashier/app.config -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/Customer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/Customer.csproj -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/CustomerBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/CustomerBootStrapper.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/CustomerController.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/CustomerUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/CustomerUserInterface.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/Program.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Customer/app.config -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/E6_Sagas_using_Rhino.Queues_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/E6_Sagas_using_Rhino.Queues_as_transport.sln -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Barista/DrinkReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Barista/DrinkReady.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/NewOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/NewOrder.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentComplete.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentDue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentDue.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/PrepareDrink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/PrepareDrink.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/SubmitPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Cashier/SubmitPayment.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/DrinkSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/DrinkSize.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E6_Sagas_using_Rhino.Queues_as_transport/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E6_Sagas_using_Rhino.Queues_as_transport/acknowledgements.txt -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/Barista.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/Barista.config -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/Barista.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/Barista.csproj -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/BaristaBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/BaristaBootStrapper.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/BaristaSaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/BaristaSaga.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/BaristaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/BaristaState.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Barista/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Cashier.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Cashier.config -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Cashier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Cashier.csproj -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/CashierBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/CashierBootStrapper.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/NewOrderConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/NewOrderConsumer.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Program.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/SubmitPaymentConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Cashier/SubmitPaymentConsumer.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/Customer.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/Customer.config -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/Customer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/Customer.csproj -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/CustomerBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/CustomerBootStrapper.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/CustomerController.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/CustomerUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/CustomerUserInterface.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Customer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/DevelopmentEnvironment/DevelopmentEnvironment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/DevelopmentEnvironment/DevelopmentEnvironment.csproj -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/DevelopmentEnvironment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/DevelopmentEnvironment/Program.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/DevelopmentEnvironment/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/DevelopmentEnvironment/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport.sln -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Barista/DrinkReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Barista/DrinkReady.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/NewOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/NewOrder.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/PaymentComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/PaymentComplete.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/PaymentDue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/PaymentDue.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/PrepareDrink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/PrepareDrink.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/SubmitPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Cashier/SubmitPayment.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/DrinkSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/DrinkSize.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E7_Inprocess_deployment_of_multiple_endpoints_using_MSMQ_as_transport/acknowledgements.txt -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/Barista.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/Barista.config -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/Barista.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/Barista.csproj -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/BaristaBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/BaristaBootStrapper.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/BaristaSaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/BaristaSaga.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/BaristaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/BaristaState.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Barista/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Cashier.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Cashier.config -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Cashier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Cashier.csproj -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/CashierBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/CashierBootStrapper.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/NewOrderConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/NewOrderConsumer.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Program.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/SubmitPaymentConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Cashier/SubmitPaymentConsumer.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/Customer.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/Customer.config -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/Customer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/Customer.csproj -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/CustomerBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/CustomerBootStrapper.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/CustomerController.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/CustomerUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/CustomerUserInterface.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Customer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/DevelopmentEnvironment/DevelopmentEnvironment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/DevelopmentEnvironment/DevelopmentEnvironment.csproj -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/DevelopmentEnvironment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/DevelopmentEnvironment/Program.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/DevelopmentEnvironment/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/DevelopmentEnvironment/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport.sln -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Barista/DrinkReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Barista/DrinkReady.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/NewOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/NewOrder.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentComplete.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentDue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/PaymentDue.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/PrepareDrink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/PrepareDrink.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/SubmitPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Cashier/SubmitPayment.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/DrinkSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/DrinkSize.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Utils/QueueUtil.cs -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E8_Inprocess_deployment_of_multiple_endpoints_using_Rhino.Queues_as_transport/acknowledgements.txt -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Barista/Barista.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Barista/Barista.csproj -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Barista/BaristaBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Barista/BaristaBootStrapper.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Barista/BaristaSaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Barista/BaristaSaga.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Barista/BaristaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Barista/BaristaState.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Barista/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Barista/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Barista/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Barista/app.config -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/Cashier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/Cashier.csproj -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/CashierBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/CashierBootStrapper.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/NewOrderConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/NewOrderConsumer.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/Program.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/SubmitPaymentConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/SubmitPaymentConsumer.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Cashier/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Cashier/app.config -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/Customer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/Customer.csproj -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/CustomerBootStrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/CustomerBootStrapper.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/CustomerController.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/CustomerUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/CustomerUserInterface.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/Program.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Customer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Customer/app.config -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/E9_Deployment_with_the_service_host.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/E9_Deployment_with_the_service_host.sln -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Barista/DrinkReady.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Barista/DrinkReady.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Cashier/NewOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Cashier/NewOrder.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Cashier/PaymentComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Cashier/PaymentComplete.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Cashier/PaymentDue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Cashier/PaymentDue.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Cashier/PrepareDrink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Cashier/PrepareDrink.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Cashier/SubmitPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Cashier/SubmitPayment.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/DrinkSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/DrinkSize.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Messages.csproj -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/README.txt -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Utils/PrepareQueues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Utils/PrepareQueues.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/Utils/Utils.csproj -------------------------------------------------------------------------------- /Source/E9_Deployment_with_the_service_host/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BjRo/LearningRhinoServiceBus/HEAD/Source/E9_Deployment_with_the_service_host/acknowledgements.txt --------------------------------------------------------------------------------