Actions
Feature #2571
openReconsider the need for ConnectionInfo abstractions
Start date:
Due date:
% Done:
0%
Estimated time:
Updated by Alex Afanasyev over 9 years ago
Just a few missing details. Construction of Transport instance allow recording parameters necessary for this instance.
Updated by Alex Afanasyev over 9 years ago
This should not be part of CCL at all, neither CCL should say anything about transports (may be just general about transport, but not specifically about tcp/udp).
Particularly about this issue. The current way to use custom transports:
new Face(new Transport(), new ConnectionInfo(params));
It should be
new Face(new Transport(params));
Actions