Mark van Renswoude
2755e93440
- Upgrade to .NET 5 - Split functionality into libraries - Tabbed interface for multiple subscribers - Placeholder for publishing tab
8 lines
167 B
C#
8 lines
167 B
C#
namespace PettingZoo.Core.Connection
|
|
{
|
|
public interface IConnectionFactory
|
|
{
|
|
IConnection CreateConnection(ConnectionParams connectionInfo);
|
|
}
|
|
}
|