ccfde19d2d
Added Mock connection Fixed AutoScroll failing with high rate message flow
11 lines
281 B
C#
11 lines
281 B
C#
namespace PettingZoo.Connection
|
|
{
|
|
public class RabbitMQClientConnectionFactory : IConnectionFactory
|
|
{
|
|
public IConnection CreateConnection(ConnectionInfo connectionInfo)
|
|
{
|
|
return new RabbitMQClientConnection(connectionInfo);
|
|
}
|
|
}
|
|
}
|