1
0
mirror of synced 2024-11-14 17:33:49 +00:00
PettingZoo/Connection/RabbitMQClientConnectionFactory.cs
PsychoMark ccfde19d2d Changed Model namespace to Connection, moved bits out to Infrastructure
Added Mock connection
Fixed AutoScroll failing with high rate message flow
2016-07-12 16:57:24 +02:00

11 lines
281 B
C#

namespace PettingZoo.Connection
{
public class RabbitMQClientConnectionFactory : IConnectionFactory
{
public IConnection CreateConnection(ConnectionInfo connectionInfo)
{
return new RabbitMQClientConnection(connectionInfo);
}
}
}