ccfde19d2d
Added Mock connection Fixed AutoScroll failing with high rate message flow
18 lines
405 B
C#
18 lines
405 B
C#
namespace PettingZoo.Connection
|
|
{
|
|
public class MockConnectionFactory : IConnectionFactory
|
|
{
|
|
private readonly int interval;
|
|
|
|
public MockConnectionFactory(int interval)
|
|
{
|
|
this.interval = interval;
|
|
}
|
|
|
|
public IConnection CreateConnection(ConnectionInfo connectionInfo)
|
|
{
|
|
return new MockConnection(interval);
|
|
}
|
|
}
|
|
}
|