Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 707 Bytes

File metadata and controls

27 lines (20 loc) · 707 Bytes

unity-rsocket-transport-websocket

A Unity Compatible WebSocket transport for Unity RSocket.

Dependencies

Example

WebsocketTransport transport = new WebsocketTransport(
    "ws", 
    "localhost",
    7000,
    5000,
    20000,
    5000);

RSocketConnector connector = new RSocketConnector(
    transport,
    new SetupOptions(3000, 1000, new List<byte>(), new List<byte>()),
    new MonoBehaviorScheduler());

RSocketRequester rSocketRequester = connector.Bind();