Remove StreamTransport interface

Implement DuplexTransport and SocketTransport separately.
This commit is contained in:
2017-02-10 22:30:12 +01:00
parent b74e5aa4ee
commit a012ca4003
7 changed files with 122 additions and 170 deletions

View File

@@ -85,10 +85,3 @@ interface SocketTransport : Transport
*/
@property Socket socket() pure nothrow @safe @nogc;
}
/**
* Represents a connection-oriented socket transport.
*/
package interface StreamTransport : DuplexTransport, SocketTransport
{
}