handleWebSocket - multiple declarations
Function handleWebSocket
Establishes a web socket conection and passes it to the on_handshake
delegate.
void handleWebSocket
(
scope nothrow @safe void delegate(scope WebSocket) on_handshake,
scope HTTPServerRequest req,
scope HTTPServerResponse res
) @safe;
Function handleWebSocket
Scheduled for deprecation - use a @safe
callback instead.
void handleWebSocket
(
scope void delegate(scope WebSocket) on_handshake,
scope HTTPServerRequest req,
scope HTTPServerResponse res
);
Function handleWebSocket
Scheduled for deprecation - use a nothrow
callback instead.
void handleWebSocket
(
scope @safe void delegate(scope WebSocket) on_handshake,
scope HTTPServerRequest req,
scope HTTPServerResponse res
) @safe;
void handleWebSocket
(
scope void delegate(scope WebSocket) on_handshake,
scope HTTPServerRequest req,
scope HTTPServerResponse res
);