NoProxy¶
Default implementation of a proxy that does not alter the supplied TCPConnectionNotify
.
actor MyClient
new create(host: String, service: String, proxy: Proxy = NoProxy) =>
let conn: TCPConnection = TCPConnection.create(
TCPConnectAuth(env.root),
proxy.apply(MyConnectionNotify.create()),
"localhost",
"80")
Implements¶
- Proxy ref
Constructors¶
create¶
Returns¶
- NoProxy iso^
Public Functions¶
apply¶
Parameters¶
- wrap: TCPConnectionNotify iso
Returns¶
- TCPConnectionNotify iso^