EventLoop.createUnixConnection

Create UNIX connection: socket family $(D_PSYMBOL AddressFamily.UNIX), socket type $(D_PSYMBOL SocketType.STREAM). The UNIX socket family is used to communicate between processes on the same machine efficiently.

This method is a coroutine which will try to establish the connection in the background. When successful, the coroutine returns a $(D_PSYMBOL Tuple!(Transport, "transport", Protocol, "protocol"))

See the $(D_PSYMBOL EventLoop.createConnection()) method for parameters.

class EventLoop
version(Posix)
createUnixConnection
(,
in char[] path = null
,,
Socket socket = null
,
in char[] serverHostname = null
)

Meta