1
0
mirror of synced 2024-11-14 17:33:49 +00:00
PettingZoo/Connection/IConnectionFactory.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

8 lines
160 B
C#

namespace PettingZoo.Connection
{
public interface IConnectionFactory
{
IConnection CreateConnection(ConnectionInfo connectionInfo);
}
}