Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.0.0
-
None
Description
E.g.
public interface ChannelFactory extends NamedFactory<Channel> { ... }
as this makes the code more readable and easier to navigate - e.g., easy to find all NamedFactory<Channel>. Note: the internal code will still use the generic _NamedFactory<T> interface, but implementations will use the "extended" interface. E.g.
public class ChannelSessionFactory implements ChannelFactory { }