This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Faulty | |
{ | |
using System; | |
using MassTransit; | |
public interface FaultyCommand | |
{ | |
string Id { get; } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Chris Patterson | |
email = ### | |
[merge] | |
tool = kdiff3 | |
[mergetool "kdiff3"] | |
path = C:/Program Files/KDiff3/KDiff3.exe | |
[branch] | |
autosetupmerge = true | |
[core] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ConsoleApplication2 | |
{ | |
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Autofac; | |
using Fooidity; | |
using Topshelf; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git filter-branch -f --index-filter "git rm -rf --cached --ignore-unmatch src/packages" -- --all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using MassTransit; | |
namespace SimpleConsoleApp | |
{ | |
internal class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ConsoleApplication3 | |
{ | |
using System; | |
using MassTransit; | |
class Program | |
{ | |
const int limit = 1000; | |
static int lastIndex = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MassTransit.RabbitMqTransport.Tests | |
{ | |
using System; | |
using System.Threading.Tasks; | |
using Configuration; | |
using NUnit.Framework; | |
using TestFramework.Messages; | |
[TestFixture] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Setting up path... | |
source dnvm.sh | |
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/git/bin:/usr/X11/bin:~/bin:" | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. | |
if [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then | |
. /usr/local/etc/bash_completion.d/git-completion.bash; | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
08:43:24,973 INFO Configuration Result: | |
[Success] Name MassTransitStressConsole | |
[Success] DisplayName MassTransit RabbitMQ Stress Console | |
[Success] Description Generates a stressful load on RabbitMQ using MassTransit | |
[Success] ServiceName MassTransitStressConsole | |
08:43:25,005 INFO Topshelf v3.2.150.0, .NET Framework v4.0.30319.34209 | |
08:43:25,036 INFO RabbitMQ Stress Test (using MassTransit) | |
08:43:25,036 INFO Host: rabbitmq://localhost/stress_service?prefetch=20 | |
08:43:25,051 INFO Username: guest | |
08:43:25,051 INFO Password: ***** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace SagaLockupRepro | |
{ | |
using System; | |
using System.Threading; | |
using Automatonymous; | |
using MassTransit; | |
using MassTransit.NLogIntegration; | |
using MassTransit.RabbitMqTransport; | |
using MassTransit.Saga; |